refactor(nvim): use '=' for table header fillchar

This commit is contained in:
Price Hiller 2023-11-01 08:05:34 -05:00
parent 9d8605d349
commit c35fa97991
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

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