arch-rice/configs/nvim-lua-custom/plugins/configs.lua

25 lines
297 B
Lua
Raw Normal View History

2022-08-11 10:04:20 +00:00
local M = {}
-- overriding default plugin configs!
M.treesitter = {
ensure_installed = {
"lua",
"vim",
"html",
"css",
"javascript",
"json",
"toml",
"markdown",
"c",
},
}
M.nvimtree = {
git = {
enable = true,
},
}
return M