17 lines
444 B
Lua
17 lines
444 B
Lua
return {
|
|
"dhruvasagar/vim-table-mode",
|
|
config = function()
|
|
vim.g.table_mode_corner = "+"
|
|
end,
|
|
keys = {
|
|
{ "<LocalLeader>tm", "<cmd>TableModeToggle<cr>", desc = "toggla table mode" },
|
|
{ "<LocalLeader>tt", "<cmd>Tableize<cr>", desc = "transform CVS to table" },
|
|
{
|
|
"<LocalLeader>T",
|
|
function()
|
|
vim.api.nvim_command("Tableize/" .. vim.fn.input("what separator to use? "))
|
|
end,
|
|
desc = "transform CVS to table",
|
|
},
|
|
},
|
|
}
|