Added autoclosing of brackets and rainbow-brackets to nvim
This commit is contained in:
parent
afa672652f
commit
fc0cc9cc17
1 changed files with 7 additions and 0 deletions
|
@ -11,6 +11,11 @@ require'nvim-treesitter.configs'.setup {
|
|||
enable = true,
|
||||
additional_vim_regex_highlighting = false,
|
||||
},
|
||||
rainbow = {
|
||||
enable = true,
|
||||
extended_mode = true,
|
||||
max_file_lines = nil,
|
||||
}
|
||||
}
|
||||
|
||||
return require('packer').startup(function(use)
|
||||
|
@ -22,5 +27,7 @@ return require('packer').startup(function(use)
|
|||
ts_update()
|
||||
end,
|
||||
}
|
||||
use 'p00f/nvim-ts-rainbow'
|
||||
use 'jiangmiao/auto-pairs'
|
||||
end)
|
||||
|
||||
|
|
Loading…
Reference in a new issue