blob: 6fa862187b0a45cd8b4376e4575b8b9537611139 (
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 {
ensure_installed = "maintained",
indent = { enable = true },
}
|