first commit

This commit is contained in:
Joshua Flores 2025-03-28 21:45:16 -04:00
commit a58c9fae89
No known key found for this signature in database
GPG key ID: 69CA63D415549E19
2 changed files with 134 additions and 0 deletions

33
keymaps.vim Normal file
View file

@ -0,0 +1,33 @@
"leader key
let mapleader=" "
"disable arrows
noremap <Up> <NOP>
noremap <Down> <NOP>
noremap <Left> <NOP>
noremap <Right> <NOP>
"+++++++++++++++ NORMAL MODE ++++++++++++++++++
"tab switches tabs
nnoremap <TAB> gt
nnoremap <S-Tab> gT
"command mode with semi colon
nnoremap ; :
"saves and quits
nnoremap <leader>w :w
nnoremap <leader>q :wq
nnoremap <leader>x :q!
"+++++++++++++++ INSERT MODE +++++++++++++++++
"disable arrows
inoremap <Up> <NOP>
inoremap <Down> <NOP>
inoremap <Left> <NOP>
inoremap <Right> <NOP>
"remap escape
inoremap jk <Esc>"