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',
desc = "Shift selection in visual right"
},
{
mode = { 'i' },
keys = '<tab>',
cmd = function()
vim.cmd(':>')
end,
desc = "Shift selection in visual mode right"
},
{
mode = { 'i' },
keys = '<S-tab>',

View File

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

View File

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