set termguicolors set mouse+=a set number set wrap set linebreak " use indents of 4 spaces, and have them copied down lines: set shiftwidth=2 set tabstop=2 set softtabstop=2 set expandtab set smarttab set autoindent set textwidth=80 filetype indent off " enable filetype detection: filetype on autocmd FileType markdown,tex,text set nosmarttab noautoindent " for C-like programming, have automatic indentation: autocmd FileType c,cpp,slang set cindent " * Keystrokes -- Insert Mode autocmd Filetype python set shiftwidth=4 tabstop=4 softtabstop=4 nnoremap h nnoremap j nnoremap k nnoremap l