dotfiles/.vimrc

17 lines
355 B
VimL
Executable File

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>+