Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
34 lines (28 sloc)
495 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Switch syntax highlighting on | |
syntax on | |
" always show ruler at bottom | |
set ruler | |
" don't make foo~ files | |
set nobackup | |
" searching | |
set ignorecase | |
set smartcase | |
set hlsearch | |
set incsearch | |
" indentation | |
set autoindent | |
set smarttab | |
if has("autocmd") | |
filetype on | |
filetype indent on | |
filetype plugin on | |
endif | |
" whitespace | |
if has("multi_byte") | |
set encoding=utf-8 | |
set list listchars=tab:»·,trail:· | |
else | |
set list listchars=tab:>-,trail:. | |
endif | |
" disable mouse integration | |
set mouse= |