Added nvim-surround plugin
This commit is contained in:
parent
58bda62205
commit
73533cf6b1
1 changed files with 25 additions and 17 deletions
|
@ -14,24 +14,32 @@ return {
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
'cameron-wags/rainbow_csv.nvim',
|
'cameron-wags/rainbow_csv.nvim',
|
||||||
config = true,
|
config = true,
|
||||||
ft = {
|
ft = {
|
||||||
'csv',
|
'csv',
|
||||||
'tsv',
|
'tsv',
|
||||||
'csv_semicolon',
|
'csv_semicolon',
|
||||||
'csv_whitespace',
|
'csv_whitespace',
|
||||||
'csv_pipe',
|
'csv_pipe',
|
||||||
'rfc_csv',
|
'rfc_csv',
|
||||||
'rfc_semicolon',
|
'rfc_semicolon',
|
||||||
},
|
},
|
||||||
cmd = {
|
cmd = {
|
||||||
'RainbowDelim',
|
'RainbowDelim',
|
||||||
'RainbowDelimSimple',
|
'RainbowDelimSimple',
|
||||||
'RainbowDelimQuoted',
|
'RainbowDelimQuoted',
|
||||||
'RainbowMultiDelim',
|
'RainbowMultiDelim',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"kylechui/nvim-surround",
|
||||||
|
event = "VeryLazy",
|
||||||
|
config = function()
|
||||||
|
require("nvim-surround").setup()
|
||||||
|
end
|
||||||
|
}
|
||||||
-- {
|
-- {
|
||||||
-- "nvim-treesitter/nvim-treesitter",
|
-- "nvim-treesitter/nvim-treesitter",
|
||||||
-- opts = {
|
-- opts = {
|
||||||
|
|
Loading…
Reference in a new issue