mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
11 lines
258 B
Lua
11 lines
258 B
Lua
|
|
vim.cmd [[set runtimepath+=.]]
|
||
|
|
vim.cmd [[runtime! plugin/plenary.vim]]
|
||
|
|
vim.cmd [[runtime! plugin/nvim-treesitter.vim]]
|
||
|
|
|
||
|
|
vim.g.swapfile = false
|
||
|
|
|
||
|
|
require('nvim-treesitter.configs').setup {
|
||
|
|
ensure_installed = 'maintained',
|
||
|
|
indent = { enable = true },
|
||
|
|
}
|