mbenv/config_in/nvim/init.vim

19 lines
720 B
VimL
Raw Normal View History

2022-06-06 13:13:15 +02:00
2022-06-06 19:29:39 +02:00
" ----------------------------- Own config ---------------------------
2022-06-06 13:13:15 +02:00
2022-06-06 19:29:39 +02:00
inoremap jk <ESC> " goto normal mode with jk
map <esc> :noh <CR> " remove search highlighting when pressing esc
set number " turn on line numbers
2022-06-06 13:13:15 +02:00
2022-06-06 19:29:39 +02:00
" ----------------------------- Plugins ------------------------------
2022-06-06 13:13:15 +02:00
2022-06-06 19:29:39 +02:00
call plug#begin()
Plug 'justinmk/vim-sneak' " s two character search
Plug 'easymotion/vim-easymotion' " \\ w to jump around quickly
Plug 'sheerun/vim-polyglot' " syntax highlighting for many langs
Plug 'junegunn/fzf' " fuzzy finder
2022-06-14 22:57:00 +02:00
Plug 'junegunn/fzf.vim' " fuzzy finder integration
Plug 'dracula/vim', { 'as': 'dracula' } " theme
call plug#end()