mirror of
https://github.com/chenasraf/nvim-treesitter.git
synced 2026-05-17 17:38:02 +00:00
12 lines
278 B
Lua
12 lines
278 B
Lua
vim.cmd [[set runtimepath+=.]]
|
|
vim.cmd [[runtime! plugin/plenary.vim]]
|
|
vim.cmd [[runtime! plugin/nvim-treesitter.vim]]
|
|
|
|
vim.o.swapfile = false
|
|
vim.bo.swapfile = false
|
|
|
|
require("nvim-treesitter.configs").setup {
|
|
ensure_installed = "maintained",
|
|
indent = { enable = true },
|
|
}
|