Created
November 24, 2013 00:57
-
-
Save eldilibra/7622023 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
" | |
" vimrc like a boss | |
" <[email protected]> | |
" modified by | |
" <[email protected]> | |
" | |
" all mouse functionality | |
" set mouse=a | |
" clipboard setup | |
set clipboard=unnamedplus | |
vmap <C-c> "+y | |
" spaces > tabs | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
" F5 for nerdtree | |
map <F5> :NERDTreeToggle<CR> | |
" syntax highlighting | |
syntax on | |
" colors | |
hi User1 guifg=#eea040 guibg=#222222 | |
hi User2 guifg=#dd3333 guibg=#222222 | |
hi User3 guifg=#ff66ff guibg=#222222 | |
hi User4 guifg=#a0ee40 guibg=#222222 | |
hi User5 guifg=#eeee40 guibg=#222222 | |
" status bar | |
set wildmenu | |
set laststatus=2 | |
" line numbers | |
set number | |
" show trailing whitespace | |
set list | |
set listchars=tab:>.,trail:.,extends:#,nbsp:. | |
" set UTF-8 encoding | |
set enc=utf-8 | |
set fenc=utf-8 | |
set termencoding=utf-8 | |
" discover plugins | |
set runtimepath+=$HOME/.vim/gist-vim | |
set runtimepath+=$HOME/.vim/webapi-vim | |
execute pathogen#infect() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment