63 lines
796 B
Lua
63 lines
796 B
Lua
local M = {}
|
|
|
|
M.treesitter = {
|
|
ensure_installed = {
|
|
"bash",
|
|
"c",
|
|
"css",
|
|
"go",
|
|
"html",
|
|
"javascript",
|
|
"json",
|
|
"lua",
|
|
"markdown",
|
|
"markdown_inline",
|
|
"toml",
|
|
"vim",
|
|
"yaml",
|
|
},
|
|
indent = {
|
|
enable = true,
|
|
disable = {
|
|
"python"
|
|
},
|
|
},
|
|
}
|
|
|
|
M.mason = {
|
|
ensure_installed = {
|
|
-- lua stuff
|
|
"lua-language-server",
|
|
"stylua",
|
|
|
|
-- web dev stuff
|
|
"css-lsp",
|
|
"html-lsp",
|
|
"typescript-language-server",
|
|
"deno",
|
|
|
|
},
|
|
}
|
|
|
|
-- git support in nvimtree
|
|
M.nvimtree = {
|
|
git = {
|
|
enable = true,
|
|
},
|
|
view = {
|
|
width = 25,
|
|
adaptive_size = true
|
|
},
|
|
renderer = {
|
|
highlight_git = true,
|
|
symlink_destination = false,
|
|
icons = {
|
|
show = {
|
|
git = true,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
return M
|