blob: 4bd1a3e6a4716953f38f43a9ed0b4a8c03ee4cba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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 {
indent = { enable = true },
highlight = { enable = true },
}
|