mirror of https://github.com/E-Almqvist/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
845 B
66 lines
845 B
local M = {}
|
|
|
|
M.treesitter = {
|
|
ensure_installed = {
|
|
"vim",
|
|
"lua",
|
|
"html",
|
|
"css",
|
|
"javascript",
|
|
"typescript",
|
|
"tsx",
|
|
"c",
|
|
"markdown",
|
|
"markdown_inline",
|
|
"prisma",
|
|
"haskell",
|
|
"python",
|
|
"zig",
|
|
},
|
|
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",
|
|
"prettier",
|
|
|
|
-- c/cpp stuff
|
|
"clangd",
|
|
"clang-format",
|
|
|
|
-- Fun/joke langs
|
|
"hls",
|
|
},
|
|
}
|
|
|
|
-- git support in nvimtree
|
|
M.nvimtree = {
|
|
git = {
|
|
enable = true,
|
|
},
|
|
|
|
renderer = {
|
|
highlight_git = true,
|
|
icons = {
|
|
show = {
|
|
git = true,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
return M
|
|
|