" Suleyman's minimal vim config for servers " at https://git.farajli.net/slcf let mapleader = " " set number set scrolloff=5 " Smooth scroll set clipboard=unnamedplus " Use system clipboard set shortmess+=I " Deactivate intro text set fillchars=eob:\ " Remove "~" for empty lines (must end wit trailing a space) :set nowrap " Disable wrapping autocmd BufwritePost * %s/\s\+$//e " Remove useless trailing spaces when saving autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o " Disable autocomments " 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 " Normal mode maps map :w! map q :wqa! map :tabnew map :tabclose! map J :tabn map K :tabp " Insert mode maps inoremap inoremap inoremap gj inoremap gk inoremap o set background=dark