Files
nvim/after/plugin/masontool.lua
Squibid 339be88db2 kitchen sink:
- add code action previews
- change indent blankline style
- more luasnip snippets
- change default mason stuff
- customize neorg more
- change notify style
- change startpage completely
- add line info to statusline
- change telescope style
- change how todo comments look
- make indentation work via treesitter
2023-10-22 18:17:21 -04:00

18 lines
311 B
Lua

local status_ok, masontool = pcall(require, "mason-tool-installer")
if not status_ok then
return
end
masontool.setup {
ensure_installed = {
'lua-language-server',
'bash-language-server',
'editorconfig-checker',
'stylua',
'shellcheck',
'clangd',
'html-lsp',
'css-lsp',
},
}