Compare commits

...

2 Commits

3 changed files with 3 additions and 11 deletions

View File

@ -54,14 +54,6 @@ 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 = nil,
line_right = nil,
line_left = '<S-tab>',
line_right = '<tab>',
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 = "NonText",
highlight = "Whitespace",
char = ""
}
},