let mapleader = " " set background=dark set clipboard=unnamedplus " Use system clipboard " set list " Show spaces, tabs, etc. set number set relativenumber set shortmess+=I " Deactivate intro text set nowrap " Disable wrapping set fillchars=eob:\ " Remove "~" for empty lines (`eob:\` must end with a trailing space) autocmd BufwritePost * %s/\s\+$//e " Remove trailing spaces when saving " Disable autocomments autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o " Different cursor shapes for insert and normal modes let &t_SI = "\e[6 q" let &t_EI = "\e[2 q" set ttimeout set ttimeoutlen=1 set ttyfast " Tabs nnoremap :tabnew nnoremap J :tabn nnoremap K :tabp " Windows nnoremap :split nnoremap :vsplit nnoremap h nnoremap j nnoremap k nnoremap l " Imitate normal mode in insert mode inoremap inoremap inoremap inoremap inoremap " Other nnoremap :w! nnoremap q :wq!