mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -04:00
13 lines
337 B
Lua
13 lines
337 B
Lua
vim.cmd [[set runtimepath+=.]]
|
|
vim.cmd [[runtime! plugin/plenary.vim]]
|
|
vim.cmd [[runtime! plugin/nvim-treesitter.vim]]
|
|
|
|
vim.cmd [[au BufRead,BufNewFile *.conf set filetype=hocon]]
|
|
|
|
vim.o.swapfile = false
|
|
vim.bo.swapfile = false
|
|
|
|
require("nvim-treesitter.configs").setup {
|
|
indent = { enable = true },
|
|
highlight = { enable = true },
|
|
}
|