nvim config: Bind ctrl+a/e to home/end

This commit is contained in:
2023-12-06 13:59:34 -05:00
parent 14c48fbb06
commit 95f7b80499
+6
View File
@@ -4,6 +4,12 @@ set fileencoding=utf-8
" show line numbers
set number
" set keybinds (home/end)
noremap <C-a> <Home>
imap <C-a> <Home>
noremap <C-e> <End>
imap <C-e> <End>
" expand all tabs and indents to 4 spaces
set tabstop=4
set shiftwidth=4