Fix commenter

This commit is contained in:
Christian Nieves
2023-06-08 17:45:33 -05:00
parent 505abba0c2
commit 2da88c8523
7 changed files with 71 additions and 50 deletions

View File

@ -10,6 +10,14 @@ require("mason-lspconfig").setup({
ensure_installed = { "lua_ls", "rust_analyzer" }
})
-- CiderLSP
vim.opt.completeopt = { "menu", "menuone", "noselect" }
-- Don't show the dumb matching stuff
vim.opt.shortmess:append("c")
vim.opt.spell = true
vim.opt.spelllang = { 'en_us' }
local lspconfig = require("lspconfig")
local configs = require("lspconfig.configs")