Add some further keybindinds

This commit is contained in:
Julian Raufelder 2023-09-02 21:08:05 +02:00
parent 4230158ff5
commit 9682dda165
No known key found for this signature in database
1 changed files with 4 additions and 0 deletions

View File

@ -646,6 +646,10 @@ cmp.setup {
vim.keymap.set('i', 'jj', '<esc>', { desc = 'Closes insert mode' })
vim.keymap.set('n', 'ec', ':', { desc = 'Execute command' })
-- map capital b and e to end/start line, should be default?
vim.keymap.set('n', 'B', '_', { desc = 'Jump to line [B]eginning' })
vim.keymap.set('n', 'E', '$', { desc = 'Jump to line [E]nding' })
-- bufferline
vim.opt.termguicolors = true
require("bufferline").setup{}