Created
January 21, 2013 00:11
-
-
Save schonstal/4582735 to your computer and use it in GitHub Desktop.
my vimrc
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
syntax on | |
filetype on | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
set smartindent | |
set number | |
set guioptions-=T | |
color brilliance_black | |
set noantialias | |
set guifont=ProggyCleanTTSZ:h16 | |
map <C-H> <C-W>h | |
map <C-J> <C-W>j | |
map <C-K> <C-W>k | |
map <C-L> <C-W>l | |
au Bufread,BufNewFile *.as set filetype=actionscript | |
au Bufread,BufNewFile *.pp set filetype=puppet | |
au Bufread,BufNewFile *.hx set filetype=haxe | |
call pathogen#infect() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment