.vimrc

Fri, 27 Jun 2014 04:21:48 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 27 Jun 2014 04:21:48 -0400
changeset 83
29dc36168071
parent 82
4f2a76fb28a3
child 85
80df41e698be
permissions
-rw-r--r--

add endwise, disable auto comment leaders on newline

18
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
1 " vim: et sts=2 sw=2
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
2 " vim: fdm=marker
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
3
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
4 set nocompatible
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
5
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
6 let on_windows=0
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
7 if has('win32') || has('win64')
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
8 " vim in cygwin has win32 = 0 and win32unix = 1
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
9 let on_windows=1
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
10 end
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
11
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
12
19
92f55dbabb83 eh, fix fold marks
Meredith Howard <mhoward@roomag.org>
parents: 18
diff changeset
13 " Set up Vundle and plugins {{{
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
14 let installed_vundle=0
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
15
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
16 if on_windows == 0
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
17 let vundle_readme=expand('~/.vim/bundle/vundle/README.md')
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
18 else
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
19 let vundle_readme=expand('~/vimfiles/bundle/vundle/README.md')
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
20 endif
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
21
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
22 if !filereadable(vundle_readme)
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
23 if !executable('git')
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
24 echo "You probably want git installed and in PATH"
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
25 quit
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
26 endif
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
27
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
28 let installed_vundle=1
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
29 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
30 echo "Installing Vundle..."
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
31 echo ""
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
32 silent !mkdir -p ~/.vim/bundle
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
33 silent !git clone https://github.com/gmarik/vundle ~/.vim/bundle/vundle
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
34 else
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
35 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
36 " 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
37 " 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
38
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
39 " Also windows is weird about args and quoting:
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
40 silent execute '!mkdir "'. $HOME .'\vimfiles\bundle"'
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
41 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
42 endif
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
43 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
44
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
45 if on_windows == 0
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
46 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
47 call vundle#rc()
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
48 else
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
49 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
50 call vundle#rc('~/vimfiles/bundle')
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
51 endif
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
52
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
53 Plugin 'gmarik/vundle'
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 'altercation/vim-colors-solarized'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
56 Plugin 'bling/vim-airline'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
57
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
58 Plugin 'Shougo/vimproc.vim'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
59 Plugin 'Shougo/unite.vim'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
60 Plugin 'Shougo/vimshell.vim'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
61 Plugin 'sjl/gundo.vim'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
62 Plugin 'majutsushi/tagbar'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
63 Plugin 'godlygeek/tabular'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
64 Plugin 'tomtom/tcomment_vim'
82
4f2a76fb28a3 Add vim-unimpaired
Meredith Howard <mhoward@roomag.org>
parents: 81
diff changeset
65 Plugin 'tpope/vim-unimpaired'
83
29dc36168071 add endwise, disable auto comment leaders on newline
Meredith Howard <mhoward@roomag.org>
parents: 82
diff changeset
66 Plugin 'tpope/vim-endwise'
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
67
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
68 Plugin 'danchoi/ri.vim'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
69 Plugin 'tpope/vim-fugitive'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
70 Plugin 'ludovicchabant/vim-lawrencium'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
71
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
72 if installed_vundle == 1
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
73 echo "Installing Plugins, please ignore key map error messages"
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
74 echo ""
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
75 :PluginInstall
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
76 if on_windows == 1
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
77 " 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
78 " 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
79 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
80 quit
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
81 endif
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
82 endif
18
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
83 " }}}
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
84
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
85
19
92f55dbabb83 eh, fix fold marks
Meredith Howard <mhoward@roomag.org>
parents: 18
diff changeset
86 " Key maps, mostly plugin stuff on F-keys {{{
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
87 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
88 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
89 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
90 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
91 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
92 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
93
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
94 " 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
95 " 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
96 if on_windows == 1
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
97 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
98 else
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
99 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
100 endif
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
101
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
102 " 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
103 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
104 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
105 "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
106 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
107 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
108 "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
109 "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
110 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
111
18
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
112 " chdir to the directory of the open buffer
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
113 map <leader>cd :cd %:p:h<cr>:pwd<cr>
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
114
18
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
115 map <leader>pp :setlocal paste!<cr>
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
116 "}}}
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
117
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
118
19
92f55dbabb83 eh, fix fold marks
Meredith Howard <mhoward@roomag.org>
parents: 18
diff changeset
119 " General settings {{{
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
120 syntax on
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
121 filetype plugin indent on
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
122
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
123 set enc=utf-8
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
124
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
125 set hlsearch
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
126 set ic smartcase
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
127
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
128 set lcs=tab:→·,trail:·
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
129
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
130 set ve=block
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
131
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
132 set autoindent
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
133 set expandtab
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
134 set shiftwidth=2
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
135 set softtabstop=2
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
136
83
29dc36168071 add endwise, disable auto comment leaders on newline
Meredith Howard <mhoward@roomag.org>
parents: 82
diff changeset
137 " apparently you have to go out of your way to make this stick
29dc36168071 add endwise, disable auto comment leaders on newline
Meredith Howard <mhoward@roomag.org>
parents: 82
diff changeset
138 autocmd BufNewFile,BufRead * setlocal formatoptions-=ro
29dc36168071 add endwise, disable auto comment leaders on newline
Meredith Howard <mhoward@roomag.org>
parents: 82
diff changeset
139
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
140 set backspace=indent,eol,start
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
141
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
142 "set nu
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
143 set scrolloff=2
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
144 set ruler
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
145 set showcmd
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
146 set wildmenu
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
147
18
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
148 " Ignore compiled files and repositories
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
149 set wildignore=*.o,*~,*.pyc
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
150 if on_windows == 1
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
151 set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*/.DS_Store
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
152 else
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
153 set wildignore+=.git\*,.hg\*,.svn\*
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
154 endif
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
155
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
156 " Don't assume to scan includes when autocompleting
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
157 set cpt-=i
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
158
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
159 " Never open with folds collapsed
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
160 set nofoldenable
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
161
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
162 set lbr
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
163 set sbr=»\
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
164
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
165 " Superseded by vim-airline
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
166 "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
167 set laststatus=2
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
168
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
169 if on_windows == 1
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
170 let $MYVIM=$HOME.'/vimfiles'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
171
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
172 if !filewritable( $MYVIM . '/var' )
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
173 silent execute '!mkdir "'.$HOME.'\vimfiles\var"'
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/backup' )
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
176 silent execute '!mkdir "'.$HOME.'\vimfiles\var\backup"'
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 if !filewritable( $MYVIM . '/var/tmp' )
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
179 silent execute '!mkdir "'.$HOME.'\vimfiles\var\tmp"'
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 if !filewritable( $MYVIM . '/var/undo' )
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
182 silent execute '!mkdir "'.$HOME.'\vimfiles\var\undo"'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
183 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
184
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
185 else
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
186 let $MYVIM=$HOME.'/.vim'
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 !filewritable( $MYVIM . '/var/backup' )
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
189 silent execute '!mkdir -p "'.$MYVIM.'/var/backup"'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
190 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
191 if !filewritable( $MYVIM . '/var/tmp' )
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
192 silent execute '!mkdir "'.$MYVIM.'/var/tmp"'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
193 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
194 if !filewritable( $MYVIM . '/var/undo' )
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
195 silent execute '!mkdir "'.$MYVIM.'/var/undo"'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
196 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
197
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
198 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
199
74
b1001f2f0523 Oops, windows font specs are different
Meredith Howard <mhoward@roomag.org>
parents: 73
diff changeset
200 if on_windows == 1
75
2b4633385693 Fuck everything Droid, use DejaVu. Droid is less unicode complete but only Xwin masks the rest in with font substitution
Meredith Howard <mhoward@roomag.org>
parents: 74
diff changeset
201 set guifont=DejaVu_Sans_Mono:h10:cDEFAULT
74
b1001f2f0523 Oops, windows font specs are different
Meredith Howard <mhoward@roomag.org>
parents: 73
diff changeset
202 set lsp=0
b1001f2f0523 Oops, windows font specs are different
Meredith Howard <mhoward@roomag.org>
parents: 73
diff changeset
203 else
75
2b4633385693 Fuck everything Droid, use DejaVu. Droid is less unicode complete but only Xwin masks the rest in with font substitution
Meredith Howard <mhoward@roomag.org>
parents: 74
diff changeset
204 set guifont=DejaVu\ Sans\ Mono\ 10
74
b1001f2f0523 Oops, windows font specs are different
Meredith Howard <mhoward@roomag.org>
parents: 73
diff changeset
205 endif
b1001f2f0523 Oops, windows font specs are different
Meredith Howard <mhoward@roomag.org>
parents: 73
diff changeset
206
72
d1ae56d8fdc4 Same guioptions on w32 and unix, and guifont
Meredith Howard <mhoward@roomag.org>
parents: 20
diff changeset
207 set guioptions-=T "disable toolbar and menu
d1ae56d8fdc4 Same guioptions on w32 and unix, and guifont
Meredith Howard <mhoward@roomag.org>
parents: 20
diff changeset
208 set guioptions-=m
d1ae56d8fdc4 Same guioptions on w32 and unix, and guifont
Meredith Howard <mhoward@roomag.org>
parents: 20
diff changeset
209 set guioptions-=t "disable tearoffs
d1ae56d8fdc4 Same guioptions on w32 and unix, and guifont
Meredith Howard <mhoward@roomag.org>
parents: 20
diff changeset
210
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
211 set backupdir=$MYVIM/var/backup//,.
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
212 set directory=$MYVIM/var/tmp//,.
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
213
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
214 set backup
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
215 set autowrite
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
216
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
217 if has('persistent_undo')
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
218 set undofile
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
219 set undodir=$MYVIM/var/undo//,.
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
220 end
18
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
221 " }}}
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
222
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
223
19
92f55dbabb83 eh, fix fold marks
Meredith Howard <mhoward@roomag.org>
parents: 18
diff changeset
224 " File type-specific settings {{{
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
225 autocmd FileType text setlocal textwidth=78
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
226
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
227 function! PerlSettings ()
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
228 setlocal keywordprg=perldoc\ -f
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
229 setlocal makeprg=perl\ -c\ %\ $*
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
230 setlocal errorformat=%m\ at\ %f\ line\ %l
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
231 endfunction
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
232
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
233 autocmd FileType perl call PerlSettings()
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
234
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
235 " 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
236 "autocmd BuffNewFile * silent! 0r $MYVIM/templates/%:e.template
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
237
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
238 " 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
239 "autocmd BufWritePre * :%s/\s+$//e
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
240
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
241 " 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
242 "let perl_fold = 1
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
243 let perl_include_pod = 1
18
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
244 " }}}
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
245
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
246
19
92f55dbabb83 eh, fix fold marks
Meredith Howard <mhoward@roomag.org>
parents: 18
diff changeset
247 " Plugin settings {{{
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
248 " > Gundo
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
249 " 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
250 if on_windows == 1
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
251 let g:gundo_prefer_python3=1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
252 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
253
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
254 " > Tagbar
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
255 if on_windows == 1
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
256 let g:tagbar_ctags_bin = 'C:\Users\mhoward\bin\ctags.exe'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
257 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
258
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
259 let g:tagbar_autoclose = 1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
260 let g:tagbar_autofocus = 1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
261 let g:tagbar_compact = 1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
262
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
263 let g:tagbar_type_perl = {
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
264 \ 'kinds' : [
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
265 \ 'p:packages:1:0',
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
266 \ 'e:extends',
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
267 \ 'r:roles',
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
268 \ 'c:constants:0:0',
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
269 \ 'f:formats:0:0',
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
270 \ 'a:attributes',
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
271 \ 's:subroutines',
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
272 \ 'l:labels',
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
273 \ ],
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
274 \ 'deffile' : '$MYVIM/ctags/perl.cnf'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
275 \ }
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
276
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
277
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
278 " > Unite
81
e8d13171bd0f Disable fuzzy match (too fuzzy)
Meredith Howard <mhoward@roomag.org>
parents: 75
diff changeset
279 " call unite#filters#matcher_default#use(['matcher_fuzzy'])
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
280 call unite#filters#sorter_default#use(['sorter_rank'])
81
e8d13171bd0f Disable fuzzy match (too fuzzy)
Meredith Howard <mhoward@roomag.org>
parents: 75
diff changeset
281 " let g:unite_source_history_yank_enable = 1
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
282
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
283 if executable('ag')
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
284 let g:unite_source_grep_command = 'ag'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
285 let g:unite_source_grep_default_opts = '--nogroup --nocolor --column'
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
286 let g:unite_source_grep_recursive_opt = ''
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
287 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
288
13
c061abf8217c Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents: 12
diff changeset
289 " > Airline
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
290 let g:airline#extensions#whitespace#enabled = 0
18
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
291 " }}}
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
292
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
293
18
5475788810a4 maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents: 14
diff changeset
294 " Local stuff, finish up
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
295 try
10
e753144057b8 Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents: 7
diff changeset
296 if on_windows == 1
1
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
297 source ~/_vimrc.local
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
298 else
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
299 source ~/.vimrc.local
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
300 endif
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
301 catch
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
302 endtry
727a469263f2 Add dotfiles
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
303
7
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
304 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
305 set nu
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
306 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
307
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
308 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
309
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
310 colorscheme solarized
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
311 else
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
312 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
313 colorscheme jellybeans
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
314 end
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
315 end
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
316
7e6e6ff35c4d try to normalize my colorschemes more, vimrc.local can cover $TERM weirdness
Meredith Howard <mhoward@roomag.org>
parents: 1
diff changeset
317

mercurial