mass update
This commit is contained in:
parent
d5faa08253
commit
c613a6d0e3
21 changed files with 361 additions and 128 deletions
17
lua/plugins/vim-table-mode.lua
Normal file
17
lua/plugins/vim-table-mode.lua
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
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",
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue