refactor(nvim): use - for table-mode header fillchar

This commit is contained in:
Price Hiller 2023-11-08 21:42:19 -06:00
parent 713d46ef3d
commit f912a59015
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -7,7 +7,7 @@ return {
lazy = false,
init = function()
vim.g.table_mode_always_active = 1
vim.g.table_mode_header_fillchar = '='
vim.g.table_mode_header_fillchar = '-'
vim.g.table_mode_corner = '|'
end
}