jones-nvim-config/lua/custom/configs/overrides.lua

63 lines
822 B
Lua
Raw Normal View History

2024-07-29 18:22:28 +00:00
local M = {}
M.treesitter = {
ensure_installed = {
"lua",
"css",
"javascript",
"html",
"typescript",
"tsx",
},
indent = {
enable = true,
},
highlight = {
enable = true,
},
autotag = {
enable = true,
},
context_commentstring = {
enable = true,
},
}
M.mason = {
ensure_installed = {
-- lua stuff
"lua-language-server",
"stylua",
-- web dev stuff
"html-lsp",
"json-lsp",
"typescript-language-server",
"deno",
"prettier",
"intelephense",
"tailwindcss",
"lua",
"prisma-language-server",
"graphql",
},
}
-- git support in nvimtree
M.nvimtree = {
git = {
enable = true,
},
renderer = {
highlight_git = true,
icons = {
show = {
git = true,
},
},
},
}
return M