Advertisement
haiv

vimrc.vim

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