nixos-configuration/users/jrpotter/neovim/config/utils/treesitter.lua

13 lines
182 B
Lua
Raw Normal View History

2023-11-18 23:08:50 +00:00
local M = {}
2024-03-05 03:10:57 +00:00
local configs = require("nvim-treesitter.configs")
2023-11-18 23:08:50 +00:00
function M.setup()
configs.setup {
auto_install = false,
highlight = { enable = true },
}
end
return M