X-Git-Url: https://git.xinqibao.xyz/dotfiles.git/blobdiff_plain/31c7165b0830fb690d133d7d6bced251775ecf94..54606eab18b65e2ff26b0b81f51ef3c5774abd7c:/.config/nvim/lua/plugin-config/nvim-treesitter.lua?ds=sidebyside diff --git a/.config/nvim/lua/plugin-config/nvim-treesitter.lua b/.config/nvim/lua/plugin-config/nvim-treesitter.lua index d9797b2..57100d2 100644 --- a/.config/nvim/lua/plugin-config/nvim-treesitter.lua +++ b/.config/nvim/lua/plugin-config/nvim-treesitter.lua @@ -1,30 +1,32 @@ require'nvim-treesitter.configs'.setup { - -- 安装 language parser - -- :TSInstallInfo 命令查看支持的语言 - ensure_installed = {"cpp", "vim", "lua"}, - -- 启用代码高亮功能 + --[[ + -- One of "all", "maintained" (parsers with maintainers), or a list of languages + ensure_installed = "maintained", + -- Install languages synchronously (only applied to `ensure_installed`) + sync_install = false, + -- List of parsers to ignore installing + ignore_install = { "javascript" }, + ]] + + -- Consistent syntax highlighting. highlight = { enable = true, additional_vim_regex_highlighting = false }, - -- 启用增量选择 + + -- Incremental selection based on the named nodes from the grammar. incremental_selection = { enable = true, keymaps = { - init_selection = '', - node_incremental = '', - node_decremental = '', + init_selection = '', + node_incremental = '', + node_decremental = '', scope_incremental = '', } }, - -- 启用基于Treesitter的代码格式化(=) . NOTE: This is an experimental feature. + + -- Indentation based on treesitter for the = operator. NOTE: This is an experimental feature. indent = { enable = false } } --- 开启 Folding ---vim.wo.foldmethod = 'expr' ---vim.wo.foldexpr = 'nvim_treesitter#foldexpr()' --- 默认不要折叠 --- https://stackoverflow.com/questions/8316139/how-to-set-the-default-to-unfolded-when-you-open-a-file ---vim.wo.foldlevel = 99