" Set absolute line number for the current line and the rest is relative number set number set relativenumber " Enable monokai theme syntax enable set background=dark colorscheme monokai " I do not remember what these do vnoremap < >gv set shiftwidth=0 set expandtab " Set autoindent set autoindent " Add command "set tabstop=4" when you want to have tab=4 spaces. " Page up and down and then center the cursor nnoremap M nnoremap M " Force the vertical bar to be skinny in insert mode, and fat in normal mode if $TERM_PROGRAM =~ "iTerm" let &t_SI = "\]50;CursorShape=1\x7" " Vertical bar in insert mode let &t_EI = "\]50;CursorShape=0\x7" " Block in normal mode endif " Use jj to escape inoremap jj " Enable highlight of searched string and clear the last used search pattern " see https://stackoverflow.com/a/657484/9723036 set hlsearch command C let @/=""