return { -- improved csv handling "hat0uma/csvview.nvim", ft = { "csv" }, opts = { parser = { comments = { "#", "//" } }, keymaps = { textobject_field_inner = { "if", mode = { "o", "x" } }, textobject_field_outer = { "af", mode = { "o", "x" } }, jump_next_field_end = { "", mode = { "n", "v" } }, jump_prev_field_end = { "", mode = { "n", "v" } }, jump_next_row = { "", mode = { "n", "v" } }, jump_prev_row = { "", mode = { "n", "v" } }, }, }, config = function(_, opts) local csvview = require("csvview") csvview.setup(opts) csvview.enable() end, }