-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
executable file
·84 lines (65 loc) · 1.37 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
set nocompatible
set number
set noswapfile
"
" Syntax highlighting
filetype off
syntax on
let &t_Co=256
set hlsearch
" expand tabs to spaces
set expandtab
" one tab is 4 whitespaces long
set tabstop=4
" exchange existing tab with spaces
retab
" exchange existing tabs with 4 spaces
set shiftwidth=4
"Noweb
au BufRead,BufNewFile *.nw set filetype=noweb
let noweb_backend = "tex"
let noweb_language = "c"
let noweb_fold_code = 0
"
" Tabs
set tabstop=4
noremap <F3> :NERDTreeToggle<CR>
set autoindent
"
" EasyMotion
let g:EasyMotion_leader_key = '-'
"
" Vundle
"
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
" My Bundles here:
"
" original repos on github
Bundle 'scrooloose/nerdtree'
Bundle 'tpope/vim-fugitive'
Bundle 'bling/vim-airline'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'flazz/vim-colorschemes'
Bundle 'Valloric/YouCompleteMe'
Bundle 'majutsushi/tagbar'
"Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
" vim-scripts repos
"Bundle 'L9'
"Bundle 'FuzzyFinder'
" Tagbar
nmap <F8> :TagbarToggle<CR>
"
" Command-T
nnoremap <Leader>g :CommandT<CR>
nnoremap <Leader>t :CommandT<CR>
Bundle 'git://git.wincent.com/command-t.git'
" git repos on your local machine (ie. when working on your own plugin)
"Bundle 'file:///Users/gmarik/path/to/plugin'
"Colors
"colorscheme mustang
"colorscheme bubblegum
colorscheme Monokai