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