2021-03-28 17:15:49 +02:00
|
|
|
inoremap jk <ESC>
|
|
|
|
|
2021-04-11 17:41:13 +02:00
|
|
|
set tabstop=4
|
|
|
|
set shiftwidth=4
|
|
|
|
|
2021-03-28 17:15:49 +02:00
|
|
|
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>+
|