Update 2025-01-22

This commit is contained in:
2025-01-22 13:39:10 +02:00
parent afd4e86207
commit e73c3b0732
26 changed files with 101 additions and 331 deletions

34
lua/plugins/csv.lua Normal file
View File

@@ -0,0 +1,34 @@
local ft = {
"csv",
"tsv",
"csv_semicolon",
"csv_whitespace",
"csv_pipe",
"rfc_csv",
"rfc_semicolon",
}
return {
{
"cameron-wags/rainbow_csv.nvim",
ft = ft,
cmd = {
"RainbowDelim",
"RainbowDelimSimple",
"RainbowDelimQuoted",
"RainbowMultiDelim",
},
opts = true,
},
{
"hat0uma/csvview.nvim",
ft = ft,
cmd = {
"CsvViewEnable",
"CsvViewDisable",
"CsvViewToggle",
},
config = function()
require("csvview").setup()
end,
},
}