Compare commits

...

2 Commits

Author SHA1 Message Date
Sven Vogel 822a1827b5 fix: remove overwrite for tab key in insert mode
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled Details
2024-12-09 14:13:56 +01:00
Sven Vogel aff0a1dcf1 feat: set virtual column highlight to whitespace 2024-12-09 14:08:36 +01:00
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 = ""
}
},