Initial commit

This commit is contained in:
Martin Bauer
2022-06-06 13:13:15 +02:00
commit a929bde64b
8 changed files with 140 additions and 0 deletions

14
config_in/nvim/init.vim Normal file
View File

@@ -0,0 +1,14 @@
" goto normal mode with jk
inoremap jk <ESC>
" remove search highlighting when pressing esc
map <esc> :noh <CR>
" --------- Plugins ----------
call plug#begin()
Plug 'justinmk/vim-sneak'
call plug#end()