mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-30 13:46:23 +00:00
Nvim restart (#9)
* chore(nvim): remove astronvim and configs * feat(nvim): new, custom nvim configuration
This commit is contained in:
23
config/nvim/lua/plugins/vim-matchup.lua
Normal file
23
config/nvim/lua/plugins/vim-matchup.lua
Normal file
@@ -0,0 +1,23 @@
|
||||
-- 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
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user