mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
20 lines
422 B
Lua
20 lines
422 B
Lua
vim.opt.runtimepath:append "."
|
|
vim.cmd.runtime { "plugin/plenary.vim", bang = true }
|
|
vim.cmd.runtime { "plugin/nvim-treesitter.lua", bang = true }
|
|
|
|
vim.filetype.add {
|
|
extension = {
|
|
conf = "hocon",
|
|
ncl = "nickel",
|
|
usd = "usd",
|
|
usda = "usd",
|
|
},
|
|
}
|
|
|
|
vim.o.swapfile = false
|
|
vim.bo.swapfile = false
|
|
|
|
require("nvim-treesitter.configs").setup {
|
|
indent = { enable = true },
|
|
highlight = { enable = true },
|
|
}
|