dotfiles/.vimrc

18 lines
350 B
VimL
Executable File

inoremap jk <ESC>
set tabstop=4
set shiftwidth=4
syntax on " highlight syntax
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>+