refactor(nvim): use '|' for table corner

This commit is contained in:
Price Hiller 2023-11-01 07:58:42 -05:00
parent 293d1e8f02
commit 9d8605d349
No known key found for this signature in database

View File

@ -7,6 +7,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 = '|'
end end
} }
} }