Added initial nvim config

This commit is contained in:
pfych 2024-08-16 21:55:29 +10:00
parent 406d73f803
commit d31faf2dbf
14 changed files with 577 additions and 0 deletions

View 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
})