From: Xinqi Bao Date: Fri, 14 Jan 2022 09:56:16 +0000 (+0800) Subject: vim, treesitter updated X-Git-Url: https://git.xinqibao.xyz/dotfiles.git/commitdiff_plain/9a2ac88afb86db3c3ee29f54d6f478983c1caca6 vim, treesitter updated --- diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 92379df..c7c12e2 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -218,6 +218,10 @@ endif "---------------------- if has_key(plugs, 'nvim-treesitter') lua require('plugin-config/nvim-treesitter') + + set foldmethod=expr + set foldexpr=nvim_treesitter#foldexpr() + set foldlevel=99 endif 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