Compare commits

..

No commits in common. "822a1827b5ede96a00bb31733b94f975f367a7fe" and "fc5d55d182c75b4ffdcd9b66ee920a6f56b60499" have entirely different histories.

3 changed files with 11 additions and 3 deletions

View File

@ -54,6 +54,14 @@ local keymaps = {
cmd = '<gv', cmd = '<gv',
desc = "Shift selection in visual right" desc = "Shift selection in visual right"
}, },
{
mode = { 'i' },
keys = '<tab>',
cmd = function()
vim.cmd(':>')
end,
desc = "Shift selection in visual mode right"
},
{ {
mode = { 'i' }, mode = { 'i' },
keys = '<S-tab>', keys = '<S-tab>',

View File

@ -37,8 +37,8 @@ return {
up = '<C-up>', up = '<C-up>',
-- Move current line in Normal mode -- Move current line in Normal mode
line_left = '<S-tab>', line_left = nil,
line_right = '<tab>', line_right = nil,
line_down = '<C-down>', line_down = '<C-down>',
line_up = '<C-up>', line_up = '<C-up>',
} }

View File

@ -3,7 +3,7 @@ return {
"lukas-reineke/virt-column.nvim", "lukas-reineke/virt-column.nvim",
opts = { opts = {
virtcolumn = "80,120", virtcolumn = "80,120",
highlight = "Whitespace", highlight = "NonText",
char = "" char = ""
} }
}, },