feat(nvim): add rainbow-csv

This commit is contained in:
Price Hiller 2024-06-17 15:46:18 -05:00
parent af84a55670
commit f9e9981ce1
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,21 @@
return {
{
"cameron-wags/rainbow_csv.nvim",
config = true,
ft = {
"csv",
"tsv",
"csv_semicolon",
"csv_whitespace",
"csv_pipe",
"rfc_csv",
"rfc_semicolon",
},
cmd = {
"RainbowDelim",
"RainbowDelimSimple",
"RainbowDelimQuoted",
"RainbowMultiDelim",
},
},
}

View File

@ -135,6 +135,13 @@ return {
local disabled_filetypes = {
"tex",
"log",
"csv",
"tsv",
"csv_semicolon",
"csv_whitespace",
"csv_pipe",
"rfc_csv",
"rfc_semicolon",
}
for _, ft in ipairs(disabled_filetypes) do