vim: add first_comma pattern to tabular

This commit is contained in:
Fernando Schauenburg 2022-10-04 13:43:03 +02:00
parent fa07d7f405
commit e43563fdf3

View file

@ -133,7 +133,13 @@ return packer().startup(function(use)
end,
}
use 'godlygeek/tabular'
use {
'godlygeek/tabular',
config = function()
vim.cmd [[AddTabularPattern first_comma /^[^,]*\zs,/l0c1l0]]
end,
}
use 'tpope/vim-commentary'