15 lines
424 B
VimL
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() |