Added initial nvim config
This commit is contained in:
parent
406d73f803
commit
d31faf2dbf
14 changed files with 577 additions and 0 deletions
17
.config/nvim/plugin/mason.lua
Normal file
17
.config/nvim/plugin/mason.lua
Normal file
|
@ -0,0 +1,17 @@
|
|||
local status, mason = pcall(require, "mason")
|
||||
if (not status) then
|
||||
print("mason is not installed")
|
||||
return
|
||||
end
|
||||
|
||||
mason.setup({
|
||||
ensure_installed = {
|
||||
"prettier",
|
||||
"lua-language-server",
|
||||
"luaformatter",
|
||||
"eslint_d",
|
||||
"typescript-language-server",
|
||||
"stylelint-lsp"
|
||||
},
|
||||
automatic_installation = true
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue