This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-config/home-manager/neovim/treesitter.lua

15 lines
330 B
Lua

require('nvim-treesitter.configs').setup({
highlight = {
enable = true,
},
incremental_selection = {
enable = true,
keymaps = {
init_selection = "v",
node_decremental = "<",
node_incremental = ">",
scope_incremental = false,
},
},
})