nvim/lua/user/treesitter.lua

45 lines
1.1 KiB
Lua
Raw Normal View History

2022-10-16 14:18:21 -04:00
local status_ok, _ = pcall(require, "nvim-treesitter")
2022-10-12 22:07:20 -04:00
if not status_ok then
return
end
vim.cmd("set foldmethod=expr")
vim.cmd("set foldexpr=nvim_treesitter#foldexpr()")
vim.cmd("set nofoldenable")
2022-10-16 14:18:21 -04:00
local configs
status_ok, configs = pcall(require, "nvim-treesitter.configs")
2022-10-12 22:07:20 -04:00
if not status_ok then
return
end
configs.setup({
ensure_installed = { "lua", "markdown", "markdown_inline", "bash", "python" }, -- put the language you want in this array
-- ensure_installed = "all", -- one of "all" or a list of languages
ignore_install = { "" }, -- List of parsers to ignore installing
sync_install = false, -- install languages synchronously (only applied to `ensure_installed`)
2022-10-16 14:18:21 -04:00
highlight = {
2022-10-12 22:07:20 -04:00
enable = true, -- false will disable the whole extension
2022-11-10 10:51:11 -05:00
disable = { "css", "help" }, -- list of language that will be disabled
2022-10-12 22:07:20 -04:00
},
autopairs = {
enable = true,
},
indent = { enable = true, disable = { "python", "css", "rust" } },
2022-10-12 22:07:20 -04:00
context_commentstring = {
enable = true,
enable_autocmd = false,
},
})
2022-10-16 14:18:21 -04:00
local context
status_ok, context = pcall(require, "nvim-treesitter.context")
if not status_ok then
return
end
context.setup({})