- 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
18 lines
311 B
Lua
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',
|
|
},
|
|
}
|