feat(nvim): add keybind to realign tables

This commit is contained in:
Price Hiller 2023-10-31 07:12:24 -05:00
parent 4d4d99c8e5
commit 0ba5b094d1
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -1,7 +1,10 @@
return {
{
"dhruvasagar/vim-table-mode",
init = function ()
keys = {
{ ";;", "<cmd>TableModeRealign<CR>", desc = "Table Mode: Realign" }
},
init = function()
vim.g.table_mode_always_active = 1
vim.g.table_mode_header_fillchar = '-'
end