mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 11:06:54 -04:00
11 lines
278 B
Lua
11 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 },
|
|
}
|