main #2

Open
SailReal wants to merge 15 commits from main into new-main
1 changed files with 4 additions and 0 deletions
Showing only changes of commit 9682dda165 - Show all commits

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{}