mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-27 13:45:29 +00:00
* chore(nvim): remove astronvim and configs * feat(nvim): new, custom nvim configuration
24 lines
499 B
Lua
24 lines
499 B
Lua
-- Move faster between context.
|
|
|
|
return {
|
|
"andymass/vim-matchup",
|
|
dependencies = "nvim-treesitter/nvim-treesitter",
|
|
config = {
|
|
highlight = {
|
|
enable = true,
|
|
disable = {},
|
|
},
|
|
indent = {
|
|
enable = false,
|
|
disable = {},
|
|
},
|
|
autotag = {
|
|
enable = true,
|
|
},
|
|
matchup = {
|
|
enable = true, -- mandatory, false will disable the whole extension
|
|
--disable = { "c", "ruby" }, -- optional, list of language that will be disabled
|
|
},
|
|
},
|
|
}
|