Compare commits

..

No commits in common. "3217a4456c1abcf2a2c0ff44d40989bbf0b03d4c" and "01359aca3c2cb67d2c2d7641761b255f73709cfa" have entirely different histories.

2 changed files with 14 additions and 24 deletions

View File

@ -11,38 +11,29 @@ require("mason").setup(require("mason").setup({
require("mason-lspconfig").setup({
ensure_installed = {
"asm_lsp",
"asm-lsp",
"asmfmt",
"bibtex-tidy",
"clangd",
"lua_ls",
"rust_analyzer",
"vhdl_ls",
"fourmolu",
"htmlbeautifier",
"latexindent",
"lua-language-server",
"luaformatter",
"markdownlint",
"prettier",
"rust-analyzer",
"rust_hdl",
"stylua",
"verible",
"vimls",
"vim-language-server",
},
})
require("mason-lspconfig").setup_handlers({
function(asm_lsp)
require("lspconfig")[asm_lsp].setup({})
end,
function(clangd)
require("lspconfig")[clangd].setup({})
end,
function(lua_ls)
require("lspconfig")[lua_ls].setup({})
end,
function(rust_analyzer)
require("lspconfig")[rust_analyzer].setup({})
end,
function(vhdl_ls)
require("lspconfig")[vhdl_ls].setup({})
end,
function(verible)
require("lspconfig")[verible].setup({})
end,
function(vimls)
require("lspconfig")[vimls].setup({})
end,
})
require("lspconfig").verible.setup({

View File

@ -31,7 +31,6 @@ end
function Update_Sys()
vim.cmd("Lazy sync")
vim.cmd("TSUpdate")
vim.cmd("MasonUpdate")
end
vim.keymap.set("n", "<M-u>", ":lua Update_Sys()<CR>")