Advertisement
ArranUbels

Untitled

Jan 23rd, 2013
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.86 KB | None | 0 0
  1. arran@arran-desktop 16077% cat ~/.vimrc
  2. syntax on                       " Syntax highlighting
  3. set foldmethod          =syntax " Fold method
  4. set background          =dark   " Background colour scheme
  5. set ai                          " Auto indent
  6. set showmatch                   " Show matching braces and brackets
  7. set ls                  =2      " status line bar
  8. set cindent                     " C indent
  9. set title                       " Console title change
  10. set spell                       " Spell checking
  11. set number                      " Line numbering
  12. "set expandtab                  " Tabs are tabs not spaces
  13. set showtabline=2
  14.  
  15. if v:version >= 700
  16.         set spelllang=en_au
  17.         set dictionary+=spell
  18. endif
  19.  
  20. if v:version >= 600
  21.         set encoding=utf-8
  22.         set termencoding=utf-8
  23.         "set fileencodings=ucs-bom,ascii,utf-8,latin1
  24. endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement