vimrc 871 B

12345678910111213141516171819202122232425262728293031323334
  1. set expandtab
  2. set smarttab
  3. set tabstop=4
  4. set softtabstop=4
  5. set shiftwidth=4
  6. set number
  7. set foldcolumn=2
  8. syntax on
  9. set noerrorbells
  10. set novisualbell
  11. set ignorecase
  12. set smartcase
  13. set hlsearch
  14. colorscheme darkblue
  15. " All system-wide defaults are set in $VIMRUNTIME/debian.vim and sourced by
  16. " the call to :runtime you can find below. If you wish to change any of those
  17. " settings, you should do it in this file (/etc/vim/vimrc), since debian.vim
  18. " will be overwritten everytime an upgrade of the vim packages is performed.
  19. " It is recommended to make changes after sourcing debian.vim since it alters
  20. " the value of the 'compatible' option.
  21. runtime! debian.vim
  22. " line enables syntax highlighting by default.
  23. if has("syntax")
  24. syntax on
  25. endif
  26. " Source a global configuration file if available
  27. if filereadable("/etc/vim/vimrc.local")
  28. source /etc/vim/vimrc.local
  29. endif