fix: new nvim-treesitter config syntax
This commit is contained in:
parent
05ac6d2b52
commit
6b290c5939
1 changed files with 23 additions and 12 deletions
|
|
@ -1,13 +1,24 @@
|
||||||
return {
|
return {
|
||||||
{ "nvim-treesitter/nvim-treesitter", build = ":TSUpdate",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
|
lazy = false,
|
||||||
|
build = ":TSUpdate",
|
||||||
config = function ()
|
config = function ()
|
||||||
local configs = require("nvim-treesitter.configs")
|
local treesitter = require("nvim-treesitter")
|
||||||
configs.setup({
|
treesitter.setup()
|
||||||
ensure_installed = { "lua", "vim", "yaml" },
|
treesitter.install { "lua", "vim", "yaml" }
|
||||||
sync_install = false,
|
|
||||||
highlight = { enable = true },
|
vim.api.nvim_create_autocmd('FileType', {
|
||||||
indent = { enable = true },
|
pattern = { "lua", "vim", "yaml" },
|
||||||
|
callback = function()
|
||||||
|
-- syntax highlighting, provided by Neovim
|
||||||
|
vim.treesitter.start()
|
||||||
|
-- folds, provided by Neovim (I don't like folds)
|
||||||
|
-- vim.wo.foldexpr = 'v:lua.vim.treesitter.foldexpr()'
|
||||||
|
-- vim.wo.foldmethod = 'expr'
|
||||||
|
-- indentation, provided by nvim-treesitter
|
||||||
|
vim.bo.indentexpr = "v:lua.require'nvim-treesitter'.indentexpr()"
|
||||||
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue