New Neovim configuration

This commit is contained in:
Fabio Scotto di Santolo
2025-07-29 17:33:21 +02:00
parent f673a70333
commit 34bed29d34
13 changed files with 148 additions and 39 deletions

View File

@@ -0,0 +1,26 @@
require("nvim-treesitter.configs").setup({
ensure_installed = {
"c",
"go",
"gomod",
"gowork",
"gosum",
"json",
"lua",
"markdown",
"python",
"zig",
},
highlight = {
enabled = true,
},
incremental_selection = {
enabled = true,
keymaps = {
init_selection = "gnn",
node_incremental = "grn",
scope_incremental = "grc",
node_decremental = "grm",
},
},
})