Advertisement
haiv

vimrc.vim minimal

Dec 17th, 2021
3,227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.69 KB | None | 0 0
  1. set background=dark
  2. syntax on            " Turn on syntax highlighting
  3. set autoindent       " always set autoindenting on
  4. set colorcolumn=81   " Right margin
  5. set encoding=utf-8
  6. set expandtab        " expand tabs to spaces
  7. set fileformat=unix  " fileformat = dos or unix
  8. set history=50       " How many lines of history to remember
  9. set nohlsearch       " Do not highlight search terms
  10. set number           " Set the line number
  11. set shiftwidth=4     " > or < will shift right or left 4 spaces
  12. set showmatch        " Show matching braces, bracket, or parenthesis auto
  13. set softtabstop=4    " tab counts as 4 spaces, not the default 8
  14. set tabstop=4        " tab counts as 4 spaces, not the default 8
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement