Rebuilding config

This commit is contained in:
Ian
2026-06-29 22:59:52 +02:00
commit 9a7fa39f63
25 changed files with 1849 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
require'nvim-treesitter'.setup {
-- A list of parser names, or "all"
ensure_installed = { "python" },
-- Install parsers synchronously (only applied to `ensure_installed`)
sync_install = false,
-- Automatically install missing parsers when entering buffer
auto_install = true,
-- List of parsers to ignore installing (for "all")
ignore_install = { },
highlight = {
enable = true,
disable = { "" },
additional_vim_regex_highlighting = false,
},
incremental_selection = {
enable = true,
keymaps = {
init_selection = '<c-space>',
node_incremental = '<c-space>',
scope_incremental = '<c-s>',
node_decremental = '<M-space>',
},
},
-- https://github.com/windwp/nvim-ts-autotag
autotag = {
enable = true,
},
}