mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2026-02-04 06:42:05 +00:00
Update 2025-01-22
This commit is contained in:
34
lua/plugins/csv.lua
Normal file
34
lua/plugins/csv.lua
Normal 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,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user