Added nvim-surround plugin

This commit is contained in:
Ivan Golikov 2025-01-03 09:15:29 +01:00
parent 58bda62205
commit 73533cf6b1

View file

@ -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 = {