Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- arran@arran-desktop 16077% cat ~/.vimrc
- syntax on " Syntax highlighting
- set foldmethod =syntax " Fold method
- set background =dark " Background colour scheme
- set ai " Auto indent
- set showmatch " Show matching braces and brackets
- set ls =2 " status line bar
- set cindent " C indent
- set title " Console title change
- set spell " Spell checking
- set number " Line numbering
- "set expandtab " Tabs are tabs not spaces
- set showtabline=2
- if v:version >= 700
- set spelllang=en_au
- set dictionary+=spell
- endif
- if v:version >= 600
- set encoding=utf-8
- set termencoding=utf-8
- "set fileencodings=ucs-bom,ascii,utf-8,latin1
- endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement