diff options
Diffstat (limited to '.config/nvim')
-rw-r--r-- | .config/nvim/init.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 48db057..a13d87c 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -52,10 +52,6 @@ function mk_scratch_buffer() ]] end -vim.keymap.set('x', '<Leader>a', 'gg0oG$', - { desc = 'Select the [A]ll of the buffer' }) -vim.keymap.set('o', '<Leader>a', ':normal! ggVG<CR>', - { desc = 'Text object of [A]ll of the buffer', silent = true }) vim.keymap.set('n', '<C-j>', '<C-w><C-j>', { desc = 'Move focus to the lower window' }) vim.keymap.set('n', '<C-k>', '<C-w><C-k>', |