added keybindings

This commit is contained in:
Rahsheen Porter 2022-11-07 17:33:59 -05:00
parent 0f401d28e1
commit b1a7860fdd
5 changed files with 189 additions and 95 deletions

View file

@ -1,33 +1,33 @@
local mason_status, mason = pcall(require, "mason")
if not mason_status then
return
return
end
local mason_lspconfig_status, mason_lspconfig = pcall(require, "mason-lspconfig")
if not mason_lspconfig_status then
return
return
end
local mason_null_ls_status, mason_null_ls = pcall(require, "mason-null-ls")
if not mason_null_ls_status then
return
return
end
mason.setup()
mason_lspconfig.setup({
ensure_installed = {
"tsserver",
"html",
"cssls",
"sumneko_lua",
}
ensure_installed = {
"tsserver",
"html",
"cssls",
"sumneko_lua",
},
})
mason_null_ls.setup({
ensure_installed = {
"prettier",
"stylua",
"eslint_d",
}
ensure_installed = {
"prettier",
"stylua",
"eslint_d",
},
})