Rebuilding config
This commit is contained in:
@@ -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,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user