forked from bleything/dotvim
-
Notifications
You must be signed in to change notification settings - Fork 1
/
vimrc
35 lines (32 loc) · 1.1 KB
/
vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"""
""" Ben Bleything's Vim Setup
""" Based on the work of many others. See README.rdoc for credits.
"""
""" Git Hubs: http://github.com/bleything/dotvim
""" Internet Electronic Mail: [email protected]
"""
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"""
""" To install, make this directory live at ~/.vim and then make the
""" vimrc file live at ~/.vimrc. You may also want to run:
"""
""" $ cd ~/.vim && rake update
"""
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" load up everything in ~/.vim/bundle using pathogen.vim
call pathogen#incubate()
source $HOME/.vim/basic
source $HOME/.vim/bindings
source $HOME/.vim/plugins
source $HOME/.vim/window
source $HOME/.vim/editing
source $HOME/.vim/filetypes
syntax enable
set background=light
colorscheme jellybeans
set clipboard=unnamed
"" Switch between Dark and bright
nnoremap <silent> <F5> :colorscheme Tomorrow<CR>
nnoremap <silent> <F6> :colorscheme Tomorrow-Night-Eighties<CR>
nnoremap <silent> <F7> :colorscheme Tomorrow-Night<CR>