Back to astronvim.

This commit is contained in:
Bartek Stalewski 2024-03-08 15:42:43 +01:00
parent 0aed4edea5
commit e26650d344
No known key found for this signature in database
22 changed files with 2 additions and 4 deletions

View file

@ -0,0 +1,41 @@
local M = {}
M.treesitter = {
ensure_installed = {
"bash",
"lua",
"markdown",
"markdown_inline",
"python",
"terraform",
"vim",
},
indent = {
enable = true,
-- disable = {
-- "python"
-- },
},
}
-- M.mason = {
-- ensure_installed = {},
-- }
-- git support in nvimtree
M.nvimtree = {
git = {
enable = true,
},
renderer = {
highlight_git = true,
icons = {
show = {
git = true,
},
},
},
}
return M