.vimrc

Fri, 30 May 2014 09:45:13 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 30 May 2014 09:45:13 -0400
changeset 14
9472c147e69b
parent 13
c061abf8217c
child 18
5475788810a4
permissions
-rw-r--r--

keep airline on though

1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
1 set nocompatible
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
2
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
3 let on_windows=0
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
4 if has('win32') || has('win64')
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
5 " vim in cygwin has win32 = 0 and win32unix = 1
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
6 let on_windows=1
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
7 end
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
8
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
9
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
10 " >> Setting up Vundle - the vim plugin bundler
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
11 let installed_vundle=0
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
12
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
13 if on_windows == 0
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
14 let vundle_readme=expand('~/.vim/bundle/vundle/README.md')
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
15 else
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
16 let vundle_readme=expand('~/vimfiles/bundle/vundle/README.md')
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
17 endif
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
18
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
19 if !filereadable(vundle_readme)
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
20 if !executable('git')
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
21 echo "You probably want git installed and in PATH"
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
22 quit
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
23 endif
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
24
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
25 let installed_vundle=1
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
26 if on_windows == 0
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
27 echo "Installing Vundle..."
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
28 echo ""
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
29 silent !mkdir -p ~/.vim/bundle
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
30 silent !git clone https://github.com/gmarik/vundle ~/.vim/bundle/vundle
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
31 else
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
32 echo "Installing Vundle and Plugins..."
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
33 " This happens in a series of minimized cmd windows rather than the cool
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
34 " progress display we normally get.
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
35
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
36 " Also windows is weird about args and quoting:
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
37 silent execute '!mkdir "'. $HOME .'\vimfiles\bundle"'
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
38 silent execute '!git clone https://github.com/gmarik/vundle "'. $HOME .'\vimfiles\bundle\vundle"'
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
39 endif
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
40 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
41
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
42 if on_windows == 0
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
43 set rtp+=~/.vim/bundle/vundle/
12
3e475410324b Another windows fix, guess rc isn't just a api change
Meredith Howard <mhoward@roomag.org>
parents: 11
diff changeset
44 call vundle#rc()
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
45 else
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
46 set rtp+=~/vimfiles/bundle/vundle/
12
3e475410324b Another windows fix, guess rc isn't just a api change
Meredith Howard <mhoward@roomag.org>
parents: 11
diff changeset
47 call vundle#rc('~/vimfiles/bundle')
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
48 endif
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
49
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
50 Plugin 'gmarik/vundle'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
51
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
52 Plugin 'altercation/vim-colors-solarized'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
53 Plugin 'bling/vim-airline'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
54
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
55 Plugin 'Shougo/vimproc.vim'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
56 Plugin 'Shougo/unite.vim'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
57 Plugin 'Shougo/vimshell.vim'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
58 Plugin 'sjl/gundo.vim'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
59 Plugin 'majutsushi/tagbar'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
60 Plugin 'godlygeek/tabular'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
61 Plugin 'tomtom/tcomment_vim'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
62
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
63 Plugin 'danchoi/ri.vim'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
64 Plugin 'tpope/vim-fugitive'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
65 Plugin 'ludovicchabant/vim-lawrencium'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
66
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
67 if installed_vundle == 1
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
68 echo "Installing Plugins, please ignore key map error messages"
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
69 echo ""
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
70 :PluginInstall
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
71 if on_windows == 1
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
72 " Windows build just isn't there with exec $0, so we already
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
73 " have some odd errors and get a weird UI at the end.
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
74 echo "Please restart vim to continue with plugins installed."
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
75 quit
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
76 endif
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
77 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
78 " Setting up Vundle - the vim plugin bundler end
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
79
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
80
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
81 " >> F-key maps, mostly plugin stuff
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
82 nmap <silent> <F1> :Unite buffer<CR>
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
83 nmap <silent> <F2> :Unite file<CR>
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
84 nmap <silent> <F3> :VimShell<CR>
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
85 map <silent> <F4> :noh<CR>
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
86 nmap <silent> <F5> :GundoToggle<CR>
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
87 nmap <silent> <F8> :TagbarToggle<CR>
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
88
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
89 " This is supposed to get a CtrlP workalike with fuzzy match
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
90 " but i need to fix ignores and always chdir to a good place
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
91 if on_windows == 1
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
92 nmap <silent> <S-F2> :Unite -start-insert file_rec:!<CR>
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
93 else
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
94 nmap <silent> <S-F2> :Unite -start-insert file_rec/async:!<CR>
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
95 endif
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
96
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
97 " F-n keys call out to normal mode from insert mode
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
98 imap <F1> <C-O><F1>
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
99 imap <F2> <C-O><F2>
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
100 "imap <F3> <C-O><F3>
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
101 imap <F4> <C-O><F4>
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
102 imap <F5> <C-O><F5>
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
103 "imap <F6> <C-O><F6>
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
104 "imap <F7> <C-O><F7>
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
105 imap <F8> <C-O><F8>
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
106
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
107
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
108 " >> General settings
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
109 syntax on
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
110 filetype plugin indent on
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
111
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
112 set enc=utf-8
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
113
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
114 set hlsearch
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
115 set ic smartcase
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
116
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
117 set lcs=tab:→·,trail:·
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
118
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
119 set ve=block
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
120
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
121 set autoindent
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
122 set expandtab
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
123 set shiftwidth=2
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
124 set softtabstop=2
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
125 " vim: enc=utf-8 et sts=2 sw=2
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
126
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
127 set backspace=indent,eol,start
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
128
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
129 "set nu
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
130 set scrolloff=2
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
131 set ruler
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
132 set showcmd
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
133 set wildmenu
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
134
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
135 " Don't assume to scan includes when autocompleting
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
136 set cpt-=i
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
137
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
138 " Never open with folds collapsed
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
139 set nofoldenable
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
140
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
141 set lbr
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
142 set sbr=»\
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
143
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
144 " Superseded by vim-airline
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
145 "set statusline=%f%m%r%h%w\ %y\ %=%l,%c\ %p%%\ %L
14
9472c147e69b keep airline on though
Meredith Howard <mhoward@roomag.org>
parents: 13
diff changeset
146 set laststatus=2
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
147
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
148 if on_windows == 1
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
149 let $MYVIM=$HOME.'/vimfiles'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
150
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
151 if !filewritable( $MYVIM . '/var' )
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
152 silent execute '!mkdir "'.$HOME.'\vimfiles\var"'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
153 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
154 if !filewritable( $MYVIM. '/var/backup' )
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
155 silent execute '!mkdir "'.$HOME.'\vimfiles\var\backup"'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
156 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
157 if !filewritable( $MYVIM . '/var/tmp' )
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
158 silent execute '!mkdir "'.$HOME.'\vimfiles\var\tmp"'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
159 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
160 if !filewritable( $MYVIM . '/var/undo' )
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
161 silent execute '!mkdir "'.$HOME.'\vimfiles\var\undo"'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
162 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
163
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
164 set guifont=Consolas:h11
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
165 set guioptions-=t
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
166 else
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
167 let $MYVIM=$HOME.'/.vim'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
168
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
169 if !filewritable( $MYVIM . '/var/backup' )
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
170 silent execute '!mkdir -p "'.$MYVIM.'/var/backup"'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
171 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
172 if !filewritable( $MYVIM . '/var/tmp' )
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
173 silent execute '!mkdir "'.$MYVIM.'/var/tmp"'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
174 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
175 if !filewritable( $MYVIM . '/var/undo' )
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
176 silent execute '!mkdir "'.$MYVIM.'/var/undo"'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
177 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
178
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
179 set guifont=Droid\ Sans\ Mono\ Slashed\ 10
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
180 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
181
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
182 set backupdir=$MYVIM/var/backup//,.
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
183 set directory=$MYVIM/var/tmp//,.
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
184
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
185 set backup
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
186 set autowrite
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
187
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
188 if has('persistent_undo')
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
189 set undofile
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
190 set undodir=$MYVIM/var/undo//,.
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
191 end
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
192
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
193
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
194 " >> File type-specific settings
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
195 autocmd FileType text setlocal textwidth=78
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
196
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
197 function! PerlSettings ()
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
198 setlocal keywordprg=perldoc\ -f
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
199 setlocal makeprg=perl\ -c\ %\ $*
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
200 setlocal errorformat=%m\ at\ %f\ line\ %l
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
201 endfunction
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
202
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
203 autocmd FileType perl call PerlSettings()
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
204
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
205 " preload templates into new buffers by file extension
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
206 "autocmd BuffNewFile * silent! 0r $MYVIM/templates/%:e.template
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
207
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
208 " strip trailing whitespace on save
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
209 "autocmd BufWritePre * :%s/\s+$//e
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
210
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
211 " perl fold scanning is slow
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
212 "let perl_fold = 1
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
213 let perl_include_pod = 1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
214
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
215
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
216 " >> Plugin settings
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
217 " > Gundo
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
218 " I prefer python3 on windows if I have to use it.
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
219 if on_windows == 1
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
220 let g:gundo_prefer_python3=1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
221 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
222
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
223 " > Tagbar
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
224 if on_windows == 1
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
225 let g:tagbar_ctags_bin = 'C:\Users\mhoward\bin\ctags.exe'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
226 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
227
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
228 let g:tagbar_autoclose = 1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
229 let g:tagbar_autofocus = 1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
230 let g:tagbar_compact = 1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
231
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
232 let g:tagbar_type_perl = {
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
233 \ 'kinds' : [
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
234 \ 'p:packages:1:0',
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
235 \ 'e:extends',
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
236 \ 'r:roles',
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
237 \ 'c:constants:0:0',
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
238 \ 'f:formats:0:0',
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
239 \ 'a:attributes',
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
240 \ 's:subroutines',
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
241 \ 'l:labels',
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
242 \ ],
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
243 \ 'deffile' : '$MYVIM/ctags/perl.cnf'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
244 \ }
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
245
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
246
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
247 " > Unite
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
248 call unite#filters#matcher_default#use(['matcher_fuzzy'])
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
249 call unite#filters#sorter_default#use(['sorter_rank'])
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
250 let g:unite_source_history_yank_enable = 1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
251
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
252 if executable('ag')
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
253 let g:unite_source_grep_command = 'ag'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
254 let g:unite_source_grep_default_opts = '--nogroup --nocolor --column'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
255 let g:unite_source_grep_recursive_opt = ''
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
256 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
257
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
258 " > Airline
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
259 let g:airline#extensions#whitespace#enabled = 0
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
260
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
261
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
262 " >> Local stuff, finish up
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
263 try
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
264 if on_windows == 1
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
265 source ~/_vimrc.local
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
266 else
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
267 source ~/.vimrc.local
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
268 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
269 catch
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
270 endtry
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
271
7
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
272 if has('gui_running')
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
273 set nu
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
274 set bg=dark
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
275
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
276 set columns=120 lines=40
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
277
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
278 colorscheme solarized
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
279 else
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
280 if &t_Co == 256
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
281 colorscheme jellybeans
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
282 end
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
283 end
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
284
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
285

mercurial