blob: 93a7b0aeb3bdae3a6b52a3c2ef8272a118187a05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-- this file is an amalgamation of configurations that don't have its own
-- config file and will be lazily loaded
require("gitblame").setup()
require("neogit").setup()
require("mason").setup()
require("mason-lspconfig").setup({
ensure_installed = {
"buf",
"cssls",
"emmet_ls",
"gopls",
"html",
"lua_ls",
"nixd",
"pylsp",
"rust_analyzer",
"tsserver",
"zls",
-- "clangd" not working on alpine
},
})
|