dotfiles/.vimrc

17 lines
355 B
VimL
Raw Normal View History

2021-03-28 17:15:49 +02:00
inoremap jk <ESC>
packadd! dracula
syntax on " highlight syntax
colorscheme dracula
set number " show line numbers
set noswapfile " disable the swapfile
set hlsearch " highlight all results
set ignorecase " ignore case in search
set incsearch " show search results as you type
vmap <C-c> "+yi
vmap <C-x> "+c
vmap <C-v> c<ESC>"+p
imap <C-v> <C-r><C-o>+