1
0

Add Tabular <leader> = to line up ='s

This commit is contained in:
2025-09-11 11:30:08 +01:00
parent 587d98be51
commit f2036743ba
2 changed files with 14 additions and 2 deletions

View File

@@ -1,5 +1,8 @@
require("config.lazy")
-- visual mode <space> = to line up "=" in selection
vim.keymap.set('v', '<leader>=', ':Tabularize /=<CR>', { noremap = true, silent = true })
-- za to fold, zm and zR to (un)fold all
vim.cmd("set foldmethod=marker")

View File

@@ -0,0 +1,9 @@
return {
{
"godlygeek/tabular",
--init = function()
-- require("/home/scottc/.local/share/nvim/lazy/tabular/autoload/tabular.vim")
-- require("tabluar/autoload/tabular.vim").setup({})
--end
},
}