.vimrc

changeset 7
7e6e6ff35c4d
parent 1
727a469263f2
child 10
e753144057b8
equal deleted inserted replaced
6:3debd229ea65 7:7e6e6ff35c4d
148 if has('persistent_undo') 148 if has('persistent_undo')
149 set undofile 149 set undofile
150 set undodir=$MYVIM/var/undo//,. 150 set undodir=$MYVIM/var/undo//,.
151 end 151 end
152 152
153 if has('gui_running')
154 set number
155 set background=dark
156 set columns=120 lines=40
157 colorscheme solarized
158 end
159 153
160 autocmd FileType text setlocal textwidth=78 154 autocmd FileType text setlocal textwidth=78
161 155
162 156
163 " -- Perl stuff 157 " -- Perl stuff
231 source ~/.vimrc.local 225 source ~/.vimrc.local
232 endif 226 endif
233 catch 227 catch
234 endtry 228 endtry
235 229
230 if has('gui_running')
231 set nu
232 set bg=dark
233
234 set columns=120 lines=40
235
236 colorscheme solarized
237 else
238 if &t_Co == 256
239 colorscheme jellybeans
240 end
241 end
242
243

mercurial