Files
mbenv/config_in/nvim/init.vim
2022-06-06 19:29:39 +02:00

15 lines
424 B
VimL

" ----------------------------- Own config ---------------------------
inoremap jk <ESC> " goto normal mode with jk
map <esc> :noh <CR> " remove search highlighting when pressing esc
set number " turn on line numbers
" ----------------------------- Plugins ------------------------------
call plug#begin()
Plug 'justinmk/vim-sneak'
Plug 'easymotion/vim-easymotion'
Plug 'sheerun/vim-polyglot'
call plug#end()