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