blob: a108e7256818a4a745de4e8ef9f85715ac977521 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
syntax on " Syntax highlighting on.
filetype on
filetype plugin on
filetype indent on " Load filetype-specific indent files.
highlight NonText guifg=#4a4a59 " Invisible character colors
highlight SpecialKey guifg=#4a4a59
set nobackup
set noswapfile
set number " Turn on line numbers.
set linebreak
set listchars=tab:▸\ ,eol:¬ " Use the same symbols as TextMate for tabstops and EOLs
|