Do not copy on delete in nvim

This commit is contained in:
2025-05-26 12:02:38 -04:00
parent a4fdfa07ec
commit a712560c93
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -10,11 +10,13 @@ set number
" enable basic spellchecking
set spell
" set keybinds (home/end)
" set keybinds (home/end, delete w/o copy)
noremap <C-a> <Home>
imap <C-a> <Home>
noremap <C-e> <End>
imap <C-e> <End>
nnoremap x "_x
nnoremap <delete> "_x
" expand all tabs and indents to 4 spaces
set tabstop=4