diff options
| author | seth <[email protected]> | 2022-08-24 15:37:06 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2022-08-24 15:37:06 -0400 |
| commit | 8fef927ede6733c20a53c4b0c13d2ab4cb08b604 (patch) | |
| tree | c5eae97847773355ffd3f2afcc84c7c9c2a5b387 /.config/nvim/lua/getchoo/lsp/config/mason.lua | |
| parent | ee45c4211d79dfb3b62531cc4f974ac3932e5131 (diff) | |
refactor lsp config
Diffstat (limited to '.config/nvim/lua/getchoo/lsp/config/mason.lua')
| -rw-r--r-- | .config/nvim/lua/getchoo/lsp/config/mason.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.config/nvim/lua/getchoo/lsp/config/mason.lua b/.config/nvim/lua/getchoo/lsp/config/mason.lua new file mode 100644 index 0000000..de45c49 --- /dev/null +++ b/.config/nvim/lua/getchoo/lsp/config/mason.lua @@ -0,0 +1,14 @@ +-- config for mason tools +local sources = require("getchoo.lsp.config.sources") + +local M = {} + +M.mason_tool_installer = { + ensure_installed = sources.mason, +} + +M.mason_lsp = { + automatic_installation = true, +} + +return M |
