Sat, 08 Apr 2023 14:27:17 -0500
remove ssh config makefile stuff
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 |
642
18efa35a0837
place encoding and scriptencoding at top
Meredith Howard <mhoward@roomag.org>
parents:
641
diff
changeset
|
3 | |
18efa35a0837
place encoding and scriptencoding at top
Meredith Howard <mhoward@roomag.org>
parents:
641
diff
changeset
|
4 | set encoding=utf-8 |
18efa35a0837
place encoding and scriptencoding at top
Meredith Howard <mhoward@roomag.org>
parents:
641
diff
changeset
|
5 | scriptencoding utf-8 |
1 | 6 | |
768
7ed19a36b198
Use vim 8's defaults.vim, remove redundant settings and old feature checks
Meredith Howard <mhoward@roomag.org>
parents:
766
diff
changeset
|
7 | unlet! skip_defaults_vim |
7ed19a36b198
Use vim 8's defaults.vim, remove redundant settings and old feature checks
Meredith Howard <mhoward@roomag.org>
parents:
766
diff
changeset
|
8 | source $VIMRUNTIME/defaults.vim |
7ed19a36b198
Use vim 8's defaults.vim, remove redundant settings and old feature checks
Meredith Howard <mhoward@roomag.org>
parents:
766
diff
changeset
|
9 | |
466 | 10 | " on windows and not cygwin |
578
3e4703eef23d
make on_windows global
Meredith Howard <mhoward@roomag.org>
parents:
577
diff
changeset
|
11 | let g:on_windows = (has('win32') || has('win64')) |
603
ae87c045d04b
Simplify directory setup
Meredith Howard <mhoward@roomag.org>
parents:
602
diff
changeset
|
12 | let g:myvim = $HOME . (g:on_windows ? '/vimfiles' : '/.vim') |
610
5f49012f8242
move these into a .cache dir
Meredith Howard <mhoward@roomag.org>
parents:
604
diff
changeset
|
13 | let g:vimcache = $HOME . '/.cache/vim' |
578
3e4703eef23d
make on_windows global
Meredith Howard <mhoward@roomag.org>
parents:
577
diff
changeset
|
14 | let s:filename = expand('<sfile>') |
10
e753144057b8
Windows-compatible vimrc
Meredith Howard <mhoward@roomag.org>
parents:
7
diff
changeset
|
15 | |
725
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
16 | " Set up plug and plugins {{{ |
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
17 | call plug#begin(g:myvim . '/bundle') |
1 | 18 | |
725
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
19 | Plug 'vim-airline/vim-airline' |
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
20 | Plug 'vim-airline/vim-airline-themes' |
838
8ffc265b413a
update vim-interestingwords github path
Meredith Howard <mhoward@roomag.org>
parents:
836
diff
changeset
|
21 | Plug 'lfv89/vim-interestingwords' |
757 | 22 | Plug 'nathanaelkane/vim-indent-guides' |
1 | 23 | |
766 | 24 | Plug 'ciaranm/securemodelines' |
725
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
25 | Plug 'editorconfig/editorconfig-vim' |
167 | 26 | |
1004 | 27 | Plug 'wsdjeg/vim-fetch' |
811
abdb905668f5
vimfiler and unite out, netrw and vinegar in
Meredith Howard <mhoward@roomag.org>
parents:
810
diff
changeset
|
28 | Plug 'tpope/vim-vinegar' |
810
de41d00d8344
switch from gundo to undotree
Meredith Howard <mhoward@roomag.org>
parents:
809
diff
changeset
|
29 | Plug 'mbbill/undotree', {'on': 'UndotreeToggle'} |
730
15f44658968e
Add triggers for gundo and tagbar
Meredith Howard <mhoward@roomag.org>
parents:
729
diff
changeset
|
30 | Plug 'majutsushi/tagbar', {'on': 'TagbarToggle'} |
237 | 31 | |
725
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
32 | Plug 'godlygeek/tabular' |
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
33 | Plug 'tomtom/tcomment_vim' |
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
34 | Plug 'tpope/vim-unimpaired' |
934
fb0cbf65b726
add kshenoy/vim-signature
Meredith Howard <mhoward@roomag.org>
parents:
927
diff
changeset
|
35 | Plug 'kshenoy/vim-signature' |
725
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
36 | Plug 'lifepillar/vim-mucomplete' |
735 | 37 | Plug 'tpope/vim-endwise' |
944
e67ad83a4265
Add vim-textobj-comment
Meredith Howard <mhoward@roomag.org>
parents:
941
diff
changeset
|
38 | Plug 'kana/vim-textobj-user' |
e67ad83a4265
Add vim-textobj-comment
Meredith Howard <mhoward@roomag.org>
parents:
941
diff
changeset
|
39 | Plug 'glts/vim-textobj-comment' |
1 | 40 | |
725
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
41 | Plug 'vimwiki/vimwiki' |
235 | 42 | |
725
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
43 | Plug 'Shougo/vinarise.vim' |
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
44 | Plug 'asciidoc/vim-asciidoc' |
738
a1db498aea9b
fix default branch for vim-perl
Meredith Howard <mhoward@roomag.org>
parents:
735
diff
changeset
|
45 | Plug 'vim-perl/vim-perl', {'branch': 'dev'} |
725
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
46 | Plug 'sheerun/vim-polyglot' |
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
47 | Plug 'yko/mojo.vim' |
86
6fb982f177b3
Get the latest vim-{perl,ruby} kits and only try to force size on windows gui
Meredith Howard <mhoward@roomag.org>
parents:
85
diff
changeset
|
48 | |
725
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
49 | Plug 'powerman/vim-plugin-viewdoc' |
340 | 50 | |
631
8e07c29f2672
fix viewdoc abbrevs and cabbrevs in general
Meredith Howard <mhoward@roomag.org>
parents:
630
diff
changeset
|
51 | let g:no_viewdoc_abbrev = 1 |
937
0b22685bc75c
Disable weird stuff from polyglot, but keep a few
Meredith Howard <mhoward@roomag.org>
parents:
934
diff
changeset
|
52 | let g:polyglot_disabled = ['autoindent', 'sensible', 'vifm', 'perl', 'go'] |
576 | 53 | |
144
46c87d5ef8bf
Add option to source vimrc.local-pre, for adding Plugins near the beginning
Meredith Howard <mhoward@roomag.org>
parents:
142
diff
changeset
|
54 | try |
466 | 55 | execute 'source ' . s:filename . '.local-pre' |
144
46c87d5ef8bf
Add option to source vimrc.local-pre, for adding Plugins near the beginning
Meredith Howard <mhoward@roomag.org>
parents:
142
diff
changeset
|
56 | catch |
46c87d5ef8bf
Add option to source vimrc.local-pre, for adding Plugins near the beginning
Meredith Howard <mhoward@roomag.org>
parents:
142
diff
changeset
|
57 | endtry |
46c87d5ef8bf
Add option to source vimrc.local-pre, for adding Plugins near the beginning
Meredith Howard <mhoward@roomag.org>
parents:
142
diff
changeset
|
58 | |
725
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
59 | call plug#end() |
18
5475788810a4
maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents:
14
diff
changeset
|
60 | " }}} |
1 | 61 | |
295
33d6b9519d7e
Add mappings and default magic-free regex, also expand scrolloff
Meredith Howard <mhoward@roomag.org>
parents:
294
diff
changeset
|
62 | " Key maps {{{ |
813 | 63 | nnoremap <silent> <F2> :20Lexplore<CR> |
814
639a3868c3da
compensate for some muscle memory
Meredith Howard <mhoward@roomag.org>
parents:
813
diff
changeset
|
64 | nnoremap <silent> <F3> n |
639a3868c3da
compensate for some muscle memory
Meredith Howard <mhoward@roomag.org>
parents:
813
diff
changeset
|
65 | nnoremap <silent> <S-F3> N |
975
8aea1e8c4aa6
better hlsearch toggle
Meredith Howard <mhoward@roomag.org>
parents:
974
diff
changeset
|
66 | noremap <silent> <F4> :let v:hlsearch = !v:hlsearch<CR> |
810
de41d00d8344
switch from gundo to undotree
Meredith Howard <mhoward@roomag.org>
parents:
809
diff
changeset
|
67 | nnoremap <silent> <F5> :UndotreeToggle<CR> |
665 | 68 | nnoremap <silent> <F8> :TagbarToggle<CR> |
13
c061abf8217c
Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents:
12
diff
changeset
|
69 | |
203 | 70 | " let F4, :noh work as-is in insert mode |
13
c061abf8217c
Be more defensive on windows, clean up and add sections
Meredith Howard <mhoward@roomag.org>
parents:
12
diff
changeset
|
71 | 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
|
72 | |
814
639a3868c3da
compensate for some muscle memory
Meredith Howard <mhoward@roomag.org>
parents:
813
diff
changeset
|
73 | cmap <F3> <CR> |
639a3868c3da
compensate for some muscle memory
Meredith Howard <mhoward@roomag.org>
parents:
813
diff
changeset
|
74 | |
18
5475788810a4
maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents:
14
diff
changeset
|
75 | " chdir to the directory of the open buffer |
665 | 76 | noremap <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
|
77 | |
665 | 78 | noremap <leader>pp :setlocal paste!<cr> |
111
99cc7b567195
Easier window navigation, disable insert-mode F-keys except F4
Meredith Howard <mhoward@roomag.org>
parents:
109
diff
changeset
|
79 | |
949
cb33f9050d24
Add completion toggle and delay
Meredith Howard <mhoward@roomag.org>
parents:
948
diff
changeset
|
80 | noremap <leader>cc :MUcompleteAutoToggle<cr> |
cb33f9050d24
Add completion toggle and delay
Meredith Howard <mhoward@roomag.org>
parents:
948
diff
changeset
|
81 | |
111
99cc7b567195
Easier window navigation, disable insert-mode F-keys except F4
Meredith Howard <mhoward@roomag.org>
parents:
109
diff
changeset
|
82 | " faster window nav |
665 | 83 | nnoremap <C-h> <C-w>h |
84 | nnoremap <C-j> <C-w>j | |
85 | nnoremap <C-k> <C-w>k | |
86 | nnoremap <C-l> <C-w>l | |
87 | nnoremap <C-\> <C-w>p | |
202
f7aa9b7b7800
configure interestingwords more
Meredith Howard <mhoward@roomag.org>
parents:
201
diff
changeset
|
88 | |
295
33d6b9519d7e
Add mappings and default magic-free regex, also expand scrolloff
Meredith Howard <mhoward@roomag.org>
parents:
294
diff
changeset
|
89 | " navigate by on-screen lines |
601 | 90 | nnoremap <expr> j v:count ? 'j' : 'gj' |
91 | nnoremap <expr> k v:count ? 'k' : 'gk' | |
295
33d6b9519d7e
Add mappings and default magic-free regex, also expand scrolloff
Meredith Howard <mhoward@roomag.org>
parents:
294
diff
changeset
|
92 | |
521 | 93 | " alt buffer |
665 | 94 | nnoremap gb <C-^> |
95 | nnoremap gB :ls<CR>:b<Space> | |
521 | 96 | |
614
2c3afa7e900f
make gV keep register type
Meredith Howard <mhoward@roomag.org>
parents:
610
diff
changeset
|
97 | " Select last paste, in the same mode it was pasted in |
665 | 98 | nnoremap <expr> gV '`[' . strpart(getregtype(), 0, 1) . '`]' |
306
e3fad58ac4ac
Handy visual mode stuff
Meredith Howard <mhoward@roomag.org>
parents:
297
diff
changeset
|
99 | |
585 | 100 | " Use ltag over tselect |
665 | 101 | nnoremap g<C-]> :call vimrc#Ltag(expand('<cword>'))<CR> |
585 | 102 | |
203 | 103 | " clear all interestingwords with \\k since \K is ri.vim |
665 | 104 | nnoremap <silent> <leader><leader>k :call UncolorAllWords()<CR> |
532 | 105 | |
799 | 106 | " mark line |
800 | 107 | nmap <leader>l V<leader>k |
799 | 108 | |
953
e033f9ce0d8c
Simplify ag/grep setup
Meredith Howard <mhoward@roomag.org>
parents:
949
diff
changeset
|
109 | " use Grep for a recursive * |
e033f9ce0d8c
Simplify ag/grep setup
Meredith Howard <mhoward@roomag.org>
parents:
949
diff
changeset
|
110 | nnoremap g* :Grep<CR> |
204
f6a2f233a33b
Fix signify -- old settings were removed
Meredith Howard <mhoward@roomag.org>
parents:
203
diff
changeset
|
111 | |
751
96ce87777789
Use full path for gKK doc
Meredith Howard <mhoward@roomag.org>
parents:
750
diff
changeset
|
112 | " K: doc, gKK: doc current filename |
96ce87777789
Use full path for gKK doc
Meredith Howard <mhoward@roomag.org>
parents:
750
diff
changeset
|
113 | nnoremap gKK :call ViewDoc('doc', expand('%:p'))<CR> |
368
91d4fb4e0a42
improve text editing experience?
Meredith Howard <mhoward@roomag.org>
parents:
362
diff
changeset
|
114 | |
424 | 115 | " Tabular shortcuts |
665 | 116 | noremap <leader>ta :Tabularize first_arrow<CR> |
117 | noremap <leader>te :Tabularize first_eq<CR> | |
118 | noremap <leader>tc :Tabularize first_colon<CR> | |
119 | noremap <leader>tm :Tabularize methods<CR> | |
368
91d4fb4e0a42
improve text editing experience?
Meredith Howard <mhoward@roomag.org>
parents:
362
diff
changeset
|
120 | |
665 | 121 | noremap <silent> <leader>a :call vimrc#AutoFmtToggle()<CR> |
430
cac0a6e87836
lord save me from the shift key
Meredith Howard <mhoward@roomag.org>
parents:
429
diff
changeset
|
122 | |
728
60df63f03873
I don't really use these except for the cd shortcuts
Meredith Howard <mhoward@roomag.org>
parents:
727
diff
changeset
|
123 | " Commands & Aliases {{{ |
631
8e07c29f2672
fix viewdoc abbrevs and cabbrevs in general
Meredith Howard <mhoward@roomag.org>
parents:
630
diff
changeset
|
124 | command! -nargs=+ CAlias call vimrc#CommandAlias(<f-args>) |
805 | 125 | |
728
60df63f03873
I don't really use these except for the cd shortcuts
Meredith Howard <mhoward@roomag.org>
parents:
727
diff
changeset
|
126 | command! Gcd call vimrc#Gcd() |
60df63f03873
I don't really use these except for the cd shortcuts
Meredith Howard <mhoward@roomag.org>
parents:
727
diff
changeset
|
127 | command! Hgcd call vimrc#Hgcd() |
805 | 128 | |
785 | 129 | command! SyntaxCompleteOn setl omnifunc=syntaxcomplete#Complete |
728
60df63f03873
I don't really use these except for the cd shortcuts
Meredith Howard <mhoward@roomag.org>
parents:
727
diff
changeset
|
130 | |
812
d62e41b99428
Not working as expected
Meredith Howard <mhoward@roomag.org>
parents:
811
diff
changeset
|
131 | command! Mksession execute "mksession! " . v:this_session |
920 | 132 | command! PruneSession call vimrc#PruneSession() |
805 | 133 | |
831 | 134 | command! -nargs=* -complete=file Tig call tig#Tig(<f-args>) |
828 | 135 | command! TigBlame call tig#TigBlame() |
877 | 136 | command! TigLog call tig#Tig('log', '-p', '--', expand('%')) |
826 | 137 | |
953
e033f9ce0d8c
Simplify ag/grep setup
Meredith Howard <mhoward@roomag.org>
parents:
949
diff
changeset
|
138 | command! -nargs=* -complete=file Grep call vimrc#Grep(<f-args>) |
e033f9ce0d8c
Simplify ag/grep setup
Meredith Howard <mhoward@roomag.org>
parents:
949
diff
changeset
|
139 | CAlias Ag Grep |
e033f9ce0d8c
Simplify ag/grep setup
Meredith Howard <mhoward@roomag.org>
parents:
949
diff
changeset
|
140 | CAlias grep Grep |
794
152f0c95cbb0
drop ag.vim; this seems to cover all i do (plus rg)
Meredith Howard <mhoward@roomag.org>
parents:
793
diff
changeset
|
141 | |
631
8e07c29f2672
fix viewdoc abbrevs and cabbrevs in general
Meredith Howard <mhoward@roomag.org>
parents:
630
diff
changeset
|
142 | CAlias Q q |
729
23ef12c54811
save my from this heavy pinky
Meredith Howard <mhoward@roomag.org>
parents:
728
diff
changeset
|
143 | CAlias Qa qa |
631
8e07c29f2672
fix viewdoc abbrevs and cabbrevs in general
Meredith Howard <mhoward@roomag.org>
parents:
630
diff
changeset
|
144 | CAlias W w |
8e07c29f2672
fix viewdoc abbrevs and cabbrevs in general
Meredith Howard <mhoward@roomag.org>
parents:
630
diff
changeset
|
145 | |
728
60df63f03873
I don't really use these except for the cd shortcuts
Meredith Howard <mhoward@roomag.org>
parents:
727
diff
changeset
|
146 | CAlias gcd Gcd |
60df63f03873
I don't really use these except for the cd shortcuts
Meredith Howard <mhoward@roomag.org>
parents:
727
diff
changeset
|
147 | CAlias hgcd Hgcd |
60df63f03873
I don't really use these except for the cd shortcuts
Meredith Howard <mhoward@roomag.org>
parents:
727
diff
changeset
|
148 | |
631
8e07c29f2672
fix viewdoc abbrevs and cabbrevs in general
Meredith Howard <mhoward@roomag.org>
parents:
630
diff
changeset
|
149 | " make these default to one window/buffer too |
8e07c29f2672
fix viewdoc abbrevs and cabbrevs in general
Meredith Howard <mhoward@roomag.org>
parents:
630
diff
changeset
|
150 | CAlias doc ViewDoc! |
8e07c29f2672
fix viewdoc abbrevs and cabbrevs in general
Meredith Howard <mhoward@roomag.org>
parents:
630
diff
changeset
|
151 | CAlias help ViewDocHelp! |
8e07c29f2672
fix viewdoc abbrevs and cabbrevs in general
Meredith Howard <mhoward@roomag.org>
parents:
630
diff
changeset
|
152 | CAlias man ViewDocMan! |
8e07c29f2672
fix viewdoc abbrevs and cabbrevs in general
Meredith Howard <mhoward@roomag.org>
parents:
630
diff
changeset
|
153 | CAlias perldoc ViewDocPerl! |
8e07c29f2672
fix viewdoc abbrevs and cabbrevs in general
Meredith Howard <mhoward@roomag.org>
parents:
630
diff
changeset
|
154 | "}}} |
8e07c29f2672
fix viewdoc abbrevs and cabbrevs in general
Meredith Howard <mhoward@roomag.org>
parents:
630
diff
changeset
|
155 | |
18
5475788810a4
maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents:
14
diff
changeset
|
156 | "}}} |
5475788810a4
maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents:
14
diff
changeset
|
157 | |
19 | 158 | " General settings {{{ |
977
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
159 | set background=dark |
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
160 | |
1 | 161 | set hlsearch |
124
1be15444e144
Don't use any shorthand options
Meredith Howard <mhoward@roomag.org>
parents:
122
diff
changeset
|
162 | set ignorecase |
1be15444e144
Don't use any shorthand options
Meredith Howard <mhoward@roomag.org>
parents:
122
diff
changeset
|
163 | set smartcase |
1 | 164 | |
641 | 165 | if has('gui_running') || $LANG =~# 'UTF-8' |
739
5c5a80199f95
clean up list/fill chars
Meredith Howard <mhoward@roomag.org>
parents:
738
diff
changeset
|
166 | let &listchars = "tab:⇥·,trail:◼,nbsp:◻,extends:»,precedes:«" |
5c5a80199f95
clean up list/fill chars
Meredith Howard <mhoward@roomag.org>
parents:
738
diff
changeset
|
167 | let &fillchars = "fold: ,vert:│" |
624
7dff635ab5f9
add non-utf8 fallbacks
Meredith Howard <mhoward@roomag.org>
parents:
623
diff
changeset
|
168 | else |
739
5c5a80199f95
clean up list/fill chars
Meredith Howard <mhoward@roomag.org>
parents:
738
diff
changeset
|
169 | let &listchars = "tab:>-,trail:-,nbsp:%,extends:»,precedes:«" |
5c5a80199f95
clean up list/fill chars
Meredith Howard <mhoward@roomag.org>
parents:
738
diff
changeset
|
170 | let &fillchars = "fold: " |
120
3a676c8eaafe
Set unicode stuff only if we think it's available, use better fold and vsplit chars
Meredith Howard <mhoward@roomag.org>
parents:
118
diff
changeset
|
171 | endif |
1 | 172 | |
602 | 173 | set linebreak |
739
5c5a80199f95
clean up list/fill chars
Meredith Howard <mhoward@roomag.org>
parents:
738
diff
changeset
|
174 | let &showbreak = "» " |
768
7ed19a36b198
Use vim 8's defaults.vim, remove redundant settings and old feature checks
Meredith Howard <mhoward@roomag.org>
parents:
766
diff
changeset
|
175 | set breakindent |
925
b5875260619a
Tweak briopt and lsp displays
Meredith Howard <mhoward@roomag.org>
parents:
924
diff
changeset
|
176 | set breakindentopt=min:66,shift:2 |
155
14fa06532900
Use breakindent if available
Meredith Howard <mhoward@roomag.org>
parents:
146
diff
changeset
|
177 | |
124
1be15444e144
Don't use any shorthand options
Meredith Howard <mhoward@roomag.org>
parents:
122
diff
changeset
|
178 | set virtualedit=block |
1 | 179 | |
180 | set autoindent | |
937
0b22685bc75c
Disable weird stuff from polyglot, but keep a few
Meredith Howard <mhoward@roomag.org>
parents:
934
diff
changeset
|
181 | set smarttab |
1 | 182 | set expandtab |
183 | set shiftwidth=2 | |
621
87c3dcbbeef3
add shiftround, drop sts
Meredith Howard <mhoward@roomag.org>
parents:
619
diff
changeset
|
184 | set shiftround |
1 | 185 | |
594
8e05f92f8cd4
Remove fo+=j feature check
Meredith Howard <mhoward@roomag.org>
parents:
590
diff
changeset
|
186 | set formatoptions=cqln1j |
998
6e682b7355ba
fix for old vim version sticking around
Meredith Howard <mhoward@roomag.org>
parents:
986
diff
changeset
|
187 | if has("patch-8.1.0360") |
6e682b7355ba
fix for old vim version sticking around
Meredith Howard <mhoward@roomag.org>
parents:
986
diff
changeset
|
188 | set diffopt+=algorithm:patience |
6e682b7355ba
fix for old vim version sticking around
Meredith Howard <mhoward@roomag.org>
parents:
986
diff
changeset
|
189 | endif |
1 | 190 | |
455 | 191 | set splitright splitbelow |
419 | 192 | set scrolloff=15 |
450 | 193 | set sidescrolloff=10 |
602 | 194 | set laststatus=2 |
535 | 195 | set noshowmode |
432 | 196 | set wildignorecase |
716
7ea1f4410682
no more <cr> weirdness
Meredith Howard <mhoward@roomag.org>
parents:
714
diff
changeset
|
197 | set shortmess+=c |
1 | 198 | |
636 | 199 | set noerrorbells |
768
7ed19a36b198
Use vim 8's defaults.vim, remove redundant settings and old feature checks
Meredith Howard <mhoward@roomag.org>
parents:
766
diff
changeset
|
200 | set belloff=all |
635
38be1320e6db
the incessant ringing!
Meredith Howard <mhoward@roomag.org>
parents:
634
diff
changeset
|
201 | |
602 | 202 | set autowriteall |
937
0b22685bc75c
Disable weird stuff from polyglot, but keep a few
Meredith Howard <mhoward@roomag.org>
parents:
934
diff
changeset
|
203 | set autoread |
602 | 204 | |
622 | 205 | set ttimeoutlen=25 |
418 | 206 | |
937
0b22685bc75c
Disable weird stuff from polyglot, but keep a few
Meredith Howard <mhoward@roomag.org>
parents:
934
diff
changeset
|
207 | set synmaxcol=350 |
602 | 208 | |
937
0b22685bc75c
Disable weird stuff from polyglot, but keep a few
Meredith Howard <mhoward@roomag.org>
parents:
934
diff
changeset
|
209 | set tags+=.tags,./.tags; |
180 | 210 | |
18
5475788810a4
maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents:
14
diff
changeset
|
211 | " Ignore compiled files and repositories |
5475788810a4
maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents:
14
diff
changeset
|
212 | set wildignore=*.o,*~,*.pyc |
578
3e4703eef23d
make on_windows global
Meredith Howard <mhoward@roomag.org>
parents:
577
diff
changeset
|
213 | if g:on_windows |
18
5475788810a4
maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents:
14
diff
changeset
|
214 | 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
|
215 | else |
5475788810a4
maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents:
14
diff
changeset
|
216 | set wildignore+=.git\*,.hg\*,.svn\* |
5475788810a4
maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents:
14
diff
changeset
|
217 | endif |
5475788810a4
maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents:
14
diff
changeset
|
218 | |
1 | 219 | " Don't assume to scan includes when autocompleting |
630
e5aec7abb8b5
add and configure mucomplete
Meredith Howard <mhoward@roomag.org>
parents:
627
diff
changeset
|
220 | set complete-=i complete-=t |
e5aec7abb8b5
add and configure mucomplete
Meredith Howard <mhoward@roomag.org>
parents:
627
diff
changeset
|
221 | |
954 | 222 | set completeopt+=menuone,noselect |
1 | 223 | |
224 | " Never open with folds collapsed | |
225 | set nofoldenable | |
226 | ||
208 | 227 | " keep the junk out (imo) |
228 | set sessionoptions=buffers,curdir,localoptions | |
229 | ||
602 | 230 | " Enable enhanced % matching in ruby |
231 | runtime macros/matchit.vim | |
1 | 232 | |
939
b769704bb258
auto-prune junk directories
Meredith Howard <mhoward@roomag.org>
parents:
938
diff
changeset
|
233 | for subdir in ['backup', 'tmp', 'undo'] |
b769704bb258
auto-prune junk directories
Meredith Howard <mhoward@roomag.org>
parents:
938
diff
changeset
|
234 | call vimrc#PrepDir(g:vimcache . '/' . subdir) |
941 | 235 | " call vimrc#PruneFiles(g:vimcache . '/' . subdir, 60) |
603
ae87c045d04b
Simplify directory setup
Meredith Howard <mhoward@roomag.org>
parents:
602
diff
changeset
|
236 | endfor |
939
b769704bb258
auto-prune junk directories
Meredith Howard <mhoward@roomag.org>
parents:
938
diff
changeset
|
237 | call vimrc#PrepDir(g:vimcache . '/session') |
1 | 238 | |
603
ae87c045d04b
Simplify directory setup
Meredith Howard <mhoward@roomag.org>
parents:
602
diff
changeset
|
239 | set backup |
610
5f49012f8242
move these into a .cache dir
Meredith Howard <mhoward@roomag.org>
parents:
604
diff
changeset
|
240 | let &backupdir = g:vimcache . '/backup//,.' |
5f49012f8242
move these into a .cache dir
Meredith Howard <mhoward@roomag.org>
parents:
604
diff
changeset
|
241 | let &directory = g:vimcache . '/tmp//,.' |
1 | 242 | |
603
ae87c045d04b
Simplify directory setup
Meredith Howard <mhoward@roomag.org>
parents:
602
diff
changeset
|
243 | if has('persistent_undo') |
ae87c045d04b
Simplify directory setup
Meredith Howard <mhoward@roomag.org>
parents:
602
diff
changeset
|
244 | set undofile |
610
5f49012f8242
move these into a .cache dir
Meredith Howard <mhoward@roomag.org>
parents:
604
diff
changeset
|
245 | let &undodir = g:vimcache . '/undo//,.' |
1 | 246 | endif |
247 | ||
884 | 248 | if executable('ag') |
815 | 249 | let &grepprg = "ag --vimgrep" |
885 | 250 | set grepformat^=%f:%l:%c:%m,%f |
953
e033f9ce0d8c
Simplify ag/grep setup
Meredith Howard <mhoward@roomag.org>
parents:
949
diff
changeset
|
251 | set errorformat+=%f |
794
152f0c95cbb0
drop ag.vim; this seems to cover all i do (plus rg)
Meredith Howard <mhoward@roomag.org>
parents:
793
diff
changeset
|
252 | endif |
152f0c95cbb0
drop ag.vim; this seems to cover all i do (plus rg)
Meredith Howard <mhoward@roomag.org>
parents:
793
diff
changeset
|
253 | |
865 | 254 | let g:jellybeans_overrides = { |
255 | \ 'SignColumn': {'ctermbg': 235, 'guibg':'222222'}, | |
256 | \ } | |
257 | ||
977
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
258 | colorscheme jellybeans |
18
5475788810a4
maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents:
14
diff
changeset
|
259 | " }}} |
1 | 260 | |
105
f3d684572a8f
group up autocmds so they can be cleared if vimrc is reloaded
Meredith Howard <mhoward@roomag.org>
parents:
87
diff
changeset
|
261 | " Autocmds {{{ |
f3d684572a8f
group up autocmds so they can be cleared if vimrc is reloaded
Meredith Howard <mhoward@roomag.org>
parents:
87
diff
changeset
|
262 | augroup vimrc |
f3d684572a8f
group up autocmds so they can be cleared if vimrc is reloaded
Meredith Howard <mhoward@roomag.org>
parents:
87
diff
changeset
|
263 | autocmd! |
f3d684572a8f
group up autocmds so they can be cleared if vimrc is reloaded
Meredith Howard <mhoward@roomag.org>
parents:
87
diff
changeset
|
264 | |
855
3123a01b8e73
Don't stopinsert if completing - bad interaction with vim-lsp omni preview
Meredith Howard <mhoward@roomag.org>
parents:
853
diff
changeset
|
265 | autocmd WinLeave * if !pumvisible() | stopinsert | endif |
801
fed4718fee5b
no more persistent insert
Meredith Howard <mhoward@roomag.org>
parents:
800
diff
changeset
|
266 | |
466 | 267 | " complement to autowriteall |
268 | autocmd FocusLost * silent! wa | |
368
91d4fb4e0a42
improve text editing experience?
Meredith Howard <mhoward@roomag.org>
parents:
362
diff
changeset
|
269 | |
665 | 270 | " Make paths when writing, as necessary |
271 | autocmd BufWritePre * :call vimrc#MkNonExDir(expand('<afile>'), +expand('<abuf>')) | |
272 | ||
963
3f9185b6a5e3
block some autocmds in diff mode
Meredith Howard <mhoward@roomag.org>
parents:
962
diff
changeset
|
273 | if ! &diff |
3f9185b6a5e3
block some autocmds in diff mode
Meredith Howard <mhoward@roomag.org>
parents:
962
diff
changeset
|
274 | " set and load a session based on servername |
3f9185b6a5e3
block some autocmds in diff mode
Meredith Howard <mhoward@roomag.org>
parents:
962
diff
changeset
|
275 | autocmd VimEnter * nested call vimrc#AutoSessionCheck() |
466 | 276 | |
963
3f9185b6a5e3
block some autocmds in diff mode
Meredith Howard <mhoward@roomag.org>
parents:
962
diff
changeset
|
277 | " Jump to last known pos |
3f9185b6a5e3
block some autocmds in diff mode
Meredith Howard <mhoward@roomag.org>
parents:
962
diff
changeset
|
278 | autocmd BufReadPost * |
3f9185b6a5e3
block some autocmds in diff mode
Meredith Howard <mhoward@roomag.org>
parents:
962
diff
changeset
|
279 | \ if &filetype !~# 'mail\|^git\|^hg' && line("'\"") >= 1 && line("'\"") <= line("$") | |
3f9185b6a5e3
block some autocmds in diff mode
Meredith Howard <mhoward@roomag.org>
parents:
962
diff
changeset
|
280 | \ exe "normal! g`\"" | |
3f9185b6a5e3
block some autocmds in diff mode
Meredith Howard <mhoward@roomag.org>
parents:
962
diff
changeset
|
281 | \ endif |
3f9185b6a5e3
block some autocmds in diff mode
Meredith Howard <mhoward@roomag.org>
parents:
962
diff
changeset
|
282 | |
3f9185b6a5e3
block some autocmds in diff mode
Meredith Howard <mhoward@roomag.org>
parents:
962
diff
changeset
|
283 | " Simple highlight conflict markers |
3f9185b6a5e3
block some autocmds in diff mode
Meredith Howard <mhoward@roomag.org>
parents:
962
diff
changeset
|
284 | autocmd BufReadPost * |
3f9185b6a5e3
block some autocmds in diff mode
Meredith Howard <mhoward@roomag.org>
parents:
962
diff
changeset
|
285 | \ match Error "^\([<>|]\)\{7} \@=\|^=\{7}$" |
3f9185b6a5e3
block some autocmds in diff mode
Meredith Howard <mhoward@roomag.org>
parents:
962
diff
changeset
|
286 | endif |
666
0cf4a2458e49
add conflict marker highlight
Meredith Howard <mhoward@roomag.org>
parents:
665
diff
changeset
|
287 | |
586 | 288 | " Simplify noisy ltag output |
289 | autocmd BufReadPost quickfix | |
641 | 290 | \ if w:quickfix_title =~# '^:ltag' | |
586 | 291 | \ setl modifiable | |
292 | \ silent exe ':%s/\^\\V\s*\|\\\$|.*//g' | | |
293 | \ setl nomodifiable | | |
294 | \ endif | |
295 | ||
296 | autocmd BufReadPost quickfix nmap <buffer> q <C-w>c | |
650
3728333503b6
quick fix for latest neomutt
Meredith Howard <mhoward@roomag.org>
parents:
642
diff
changeset
|
297 | |
3728333503b6
quick fix for latest neomutt
Meredith Howard <mhoward@roomag.org>
parents:
642
diff
changeset
|
298 | " Neomutt changed their tmpfile pattern, ugh |
3728333503b6
quick fix for latest neomutt
Meredith Howard <mhoward@roomag.org>
parents:
642
diff
changeset
|
299 | autocmd BufNewFile,BufRead neomutt-*-\w\+ setf mail |
105
f3d684572a8f
group up autocmds so they can be cleared if vimrc is reloaded
Meredith Howard <mhoward@roomag.org>
parents:
87
diff
changeset
|
300 | augroup END |
414 | 301 | |
787
fc7e6eaf6a91
Disable startup positioning from defaults.vim
Meredith Howard <mhoward@roomag.org>
parents:
785
diff
changeset
|
302 | " clear defaults.vim 'jump to last known pos' |
fc7e6eaf6a91
Disable startup positioning from defaults.vim
Meredith Howard <mhoward@roomag.org>
parents:
785
diff
changeset
|
303 | augroup vimStartup | au! | augroup END |
fc7e6eaf6a91
Disable startup positioning from defaults.vim
Meredith Howard <mhoward@roomag.org>
parents:
785
diff
changeset
|
304 | |
748
648b37626788
Backed out changeset 63fedee268a7
Meredith Howard <mhoward@roomag.org>
parents:
747
diff
changeset
|
305 | " https://mjj.io/2015/01/27/encrypting-files-with-gpg-and-vim/ |
648b37626788
Backed out changeset 63fedee268a7
Meredith Howard <mhoward@roomag.org>
parents:
747
diff
changeset
|
306 | " hacked to work with vimwiki |
648b37626788
Backed out changeset 63fedee268a7
Meredith Howard <mhoward@roomag.org>
parents:
747
diff
changeset
|
307 | augroup encrypted |
648b37626788
Backed out changeset 63fedee268a7
Meredith Howard <mhoward@roomag.org>
parents:
747
diff
changeset
|
308 | autocmd! |
749 | 309 | autocmd BufReadPre,FileReadPre *.gpg,*.gpg.* setl noswapfile noundofile nobackup viminfo= |
750
36a4da0a9863
Separate errors from filter stream
Meredith Howard <mhoward@roomag.org>
parents:
749
diff
changeset
|
310 | autocmd BufReadPost *.gpg,*.gpg.* call vimrc#SafeFilterFile('gpg2 -d') |
36a4da0a9863
Separate errors from filter stream
Meredith Howard <mhoward@roomag.org>
parents:
749
diff
changeset
|
311 | autocmd BufWritePre *.gpg,*.gpg.* call vimrc#SafeFilterFile('gpg2 -se -a --default-recipient-self') |
749 | 312 | autocmd BufWritePost *.gpg,*.gpg.* :sil undo |
748
648b37626788
Backed out changeset 63fedee268a7
Meredith Howard <mhoward@roomag.org>
parents:
747
diff
changeset
|
313 | augroup END |
648b37626788
Backed out changeset 63fedee268a7
Meredith Howard <mhoward@roomag.org>
parents:
747
diff
changeset
|
314 | "}}} |
648b37626788
Backed out changeset 63fedee268a7
Meredith Howard <mhoward@roomag.org>
parents:
747
diff
changeset
|
315 | |
105
f3d684572a8f
group up autocmds so they can be cleared if vimrc is reloaded
Meredith Howard <mhoward@roomag.org>
parents:
87
diff
changeset
|
316 | " Perl type-specific settings {{{ |
651
4a0d4c07b49e
use perltidy for equalprg if present
Meredith Howard <mhoward@roomag.org>
parents:
650
diff
changeset
|
317 | let perl_include_pod = 1 |
4a0d4c07b49e
use perltidy for equalprg if present
Meredith Howard <mhoward@roomag.org>
parents:
650
diff
changeset
|
318 | let perl_sub_signatures = 1 |
4a0d4c07b49e
use perltidy for equalprg if present
Meredith Howard <mhoward@roomag.org>
parents:
650
diff
changeset
|
319 | let perl_sync_dist = 200 |
658
69ed96c80ed0
use the perl compiler plugin, maybe i was confused
Meredith Howard <mhoward@roomag.org>
parents:
651
diff
changeset
|
320 | |
69ed96c80ed0
use the perl compiler plugin, maybe i was confused
Meredith Howard <mhoward@roomag.org>
parents:
651
diff
changeset
|
321 | let g:perl_compiler_force_warnings = 0 |
18
5475788810a4
maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents:
14
diff
changeset
|
322 | " }}} |
1 | 323 | |
19 | 324 | " Plugin settings {{{ |
725
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
325 | let g:plug_threads = 3 |
6ff8e3f73482
switch from vundle to plug
Meredith Howard <mhoward@roomag.org>
parents:
722
diff
changeset
|
326 | |
887 | 327 | let g:netrw_altfile = 1 |
948
92cb1b3e285a
This popup is busted and its annoying to update vimball plugins
Meredith Howard <mhoward@roomag.org>
parents:
944
diff
changeset
|
328 | let g:netrw_use_errorwindow = 0 |
887 | 329 | |
630
e5aec7abb8b5
add and configure mucomplete
Meredith Howard <mhoward@roomag.org>
parents:
627
diff
changeset
|
330 | ">> mucomplete |
e5aec7abb8b5
add and configure mucomplete
Meredith Howard <mhoward@roomag.org>
parents:
627
diff
changeset
|
331 | " enable and prefer local buffer before tags |
949
cb33f9050d24
Add completion toggle and delay
Meredith Howard <mhoward@roomag.org>
parents:
948
diff
changeset
|
332 | let g:mucomplete#completion_delay = 300 |
779
0053354a8f58
fix trying to do omni on sql files
Meredith Howard <mhoward@roomag.org>
parents:
771
diff
changeset
|
333 | let g:mucomplete#chains = { |
856 | 334 | \ 'default': ['path', 'c-n', 'omni', 'tags', 'dict', 'uspl'], |
779
0053354a8f58
fix trying to do omni on sql files
Meredith Howard <mhoward@roomag.org>
parents:
771
diff
changeset
|
335 | \} |
630
e5aec7abb8b5
add and configure mucomplete
Meredith Howard <mhoward@roomag.org>
parents:
627
diff
changeset
|
336 | |
451 | 337 | ">> Vimwiki |
874 | 338 | let g:vimwiki_auto_chdir = 1 |
339 | let g:vimwiki_auto_header = 1 | |
924
0726a063b1d2
Disable vimwiki markdown hijack
Meredith Howard <mhoward@roomag.org>
parents:
923
diff
changeset
|
340 | let g:vimwiki_ext2syntax = {} |
874 | 341 | |
454
e501f44a5885
set spideroak as 2nd wiki
Meredith Howard <mhoward@roomag.org>
parents:
453
diff
changeset
|
342 | let g:vimwiki_list = [ |
530
64270d166434
add block highlighting
Meredith Howard <mhoward@roomag.org>
parents:
526
diff
changeset
|
343 | \ { |
64270d166434
add block highlighting
Meredith Howard <mhoward@roomag.org>
parents:
526
diff
changeset
|
344 | \ 'path': '~/vimwiki/', |
64270d166434
add block highlighting
Meredith Howard <mhoward@roomag.org>
parents:
526
diff
changeset
|
345 | \ 'auto_tags': 1, 'auto_toc': 1, 'automatic_nested_syntaxes': 1 |
64270d166434
add block highlighting
Meredith Howard <mhoward@roomag.org>
parents:
526
diff
changeset
|
346 | \ }, |
64270d166434
add block highlighting
Meredith Howard <mhoward@roomag.org>
parents:
526
diff
changeset
|
347 | \ { |
64270d166434
add block highlighting
Meredith Howard <mhoward@roomag.org>
parents:
526
diff
changeset
|
348 | \ 'path': '~/Documents/SpiderOak Hive/vimwiki', |
64270d166434
add block highlighting
Meredith Howard <mhoward@roomag.org>
parents:
526
diff
changeset
|
349 | \ 'auto_tags': 1, 'auto_toc': 1, 'automatic_nested_syntaxes': 1 |
64270d166434
add block highlighting
Meredith Howard <mhoward@roomag.org>
parents:
526
diff
changeset
|
350 | \ } |
64270d166434
add block highlighting
Meredith Howard <mhoward@roomag.org>
parents:
526
diff
changeset
|
351 | \ ] |
451 | 352 | |
340 | 353 | ">> Viewdoc |
458 | 354 | let g:viewdoc_open = 'topleft new' |
416
ef460163c246
add new viewdoc setting
Meredith Howard <mhoward@roomag.org>
parents:
414
diff
changeset
|
355 | let g:viewdoc_winwidth_max = 100 |
340 | 356 | |
810
de41d00d8344
switch from gundo to undotree
Meredith Howard <mhoward@roomag.org>
parents:
809
diff
changeset
|
357 | ">> Undotree |
de41d00d8344
switch from gundo to undotree
Meredith Howard <mhoward@roomag.org>
parents:
809
diff
changeset
|
358 | let g:undotree_SplitWidth = 45 |
de41d00d8344
switch from gundo to undotree
Meredith Howard <mhoward@roomag.org>
parents:
809
diff
changeset
|
359 | let g:undotree_SetFocusWhenToggle = 1 |
de41d00d8344
switch from gundo to undotree
Meredith Howard <mhoward@roomag.org>
parents:
809
diff
changeset
|
360 | let g:undotree_ShortIndicators = 1 |
de41d00d8344
switch from gundo to undotree
Meredith Howard <mhoward@roomag.org>
parents:
809
diff
changeset
|
361 | let g:undotree_DiffCommand = "diff -dp -U 1" |
1 | 362 | |
109
14b6da5839f0
Add/set up perl and ruby omnicomplete
Meredith Howard <mhoward@roomag.org>
parents:
107
diff
changeset
|
363 | ">> Tagbar |
1 | 364 | let g:tagbar_autoclose = 1 |
365 | let g:tagbar_autofocus = 1 | |
366 | let g:tagbar_compact = 1 | |
142
d0d2b54e855f
Tweak unite, shrink tagbar a little
Meredith Howard <mhoward@roomag.org>
parents:
139
diff
changeset
|
367 | let g:tagbar_width = 30 |
1 | 368 | |
868
b3beb2c34536
move custom tagbar configs to own file
Meredith Howard <mhoward@roomag.org>
parents:
866
diff
changeset
|
369 | " tagbar languages in plugin/tagbar-types.vim |
1 | 370 | |
109
14b6da5839f0
Add/set up perl and ruby omnicomplete
Meredith Howard <mhoward@roomag.org>
parents:
107
diff
changeset
|
371 | ">> Airline |
1 | 372 | let g:airline#extensions#whitespace#enabled = 0 |
252
e5f59db6e92a
Nice separator when not using powerline.
Meredith Howard <mhoward@roomag.org>
parents:
250
diff
changeset
|
373 | let g:airline_powerline_fonts = 0 |
85 | 374 | |
526 | 375 | let g:airline#extensions#tabline#enabled = 1 |
524
d559496f6ef3
Drop bufferline for airline builtin
Meredith Howard <mhoward@roomag.org>
parents:
521
diff
changeset
|
376 | let g:airline#extensions#tabline#buffer_min_count = 2 |
526 | 377 | let g:airline#extensions#tabline#tab_nr_type = 1 |
378 | let g:airline#extensions#tabline#buffer_nr_show = 1 | |
379 | let g:airline#extensions#tabline#formatter = 'unique_tail_improved' | |
524
d559496f6ef3
Drop bufferline for airline builtin
Meredith Howard <mhoward@roomag.org>
parents:
521
diff
changeset
|
380 | let g:airline#extensions#tabline#buffer_nr_format = '%s:' |
526 | 381 | let g:airline#extensions#tabline#buffers_label = 'BUF' |
382 | let g:airline#extensions#tabline#tabs_label = 'TAB' | |
383 | let g:airline#extensions#tabline#left_sep = ' ' | |
384 | let g:airline#extensions#tabline#left_alt_sep = ' ' | |
385 | let g:airline#extensions#tabline#right_sep = ' ' | |
386 | let g:airline#extensions#tabline#right_alt_sep = ' ' | |
387 | ||
388 | let g:airline#extensions#tabline#ignore_bufadd_pat = | |
818 | 389 | \ '\c\v^__tagbar|^[doc\d*\]$|^diffpanel' |
203 | 390 | |
524
d559496f6ef3
Drop bufferline for airline builtin
Meredith Howard <mhoward@roomag.org>
parents:
521
diff
changeset
|
391 | let g:airline#extensions#branch#format = 2 |
129 | 392 | |
202
f7aa9b7b7800
configure interestingwords more
Meredith Howard <mhoward@roomag.org>
parents:
201
diff
changeset
|
393 | ">> interestingwords |
f7aa9b7b7800
configure interestingwords more
Meredith Howard <mhoward@roomag.org>
parents:
201
diff
changeset
|
394 | " These are jellybeans colors and some complements |
917 | 395 | let g:interestingWordsGUIColors = ['#C4A258','#6AADA0', '#71B9F8', '#A037B0', '#CF6A4C', '#D8AD4C'] |
396 | let g:interestingWordsTermColors = ['179', '73', '75', '133', '167', '136'] | |
18
5475788810a4
maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents:
14
diff
changeset
|
397 | " }}} |
1 | 398 | |
419 | 399 | " {{{ Commands |
563 | 400 | " Preview markdown mail -- I edit with headers so I box them in a code block. |
639 | 401 | command! MailPreview enew | set bt=nofile | 0r # | exe 'norm! 0O```<Esc>}O```' | silent exe '%!mutt-md2html | mutt-html2txt' | 0 |
402 | command! MailPreviewHTML enew | set bt=nofile | setf html | 0r # | exe 'norm! 0O```<Esc>}O```' | silent exe '%!mutt-md2html' | 0 | |
419 | 403 | " }}} |
404 | ||
18
5475788810a4
maps for chdir % and paste mode, add fold marks
Meredith Howard <mhoward@roomag.org>
parents:
14
diff
changeset
|
405 | " Local stuff, finish up |
1 | 406 | try |
466 | 407 | execute 'source ' . s:filename . '.local' |
1 | 408 | catch |
409 | endtry | |
410 | ||
977
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
411 | " {{{ Terminal tweaks |
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
412 | " vertical bar in insert mode. |
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
413 | if &term =~# '^\(xterm\|screen\|rxvt\)' |
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
414 | let &t_SI = "\e[5 q" |
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
415 | let &t_EI = "\e[0 q" |
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
416 | if exists("$TMUX") |
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
417 | let &t_SI = "\ePtmux;" . substitute(&t_SI, "\e", "\e\e", 'g') . "\e\\" |
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
418 | let &t_EI = "\ePtmux;" . substitute(&t_EI, "\e", "\e\e", 'g') . "\e\\" |
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
419 | endif |
252
e5f59db6e92a
Nice separator when not using powerline.
Meredith Howard <mhoward@roomag.org>
parents:
250
diff
changeset
|
420 | endif |
e5f59db6e92a
Nice separator when not using powerline.
Meredith Howard <mhoward@roomag.org>
parents:
250
diff
changeset
|
421 | |
977
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
422 | if $TERM =~# 'rxvt-unicode' |
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
423 | set ttymouse=urxvt |
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
424 | set mouse=a |
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
425 | map <Esc>[7~ <Home> |
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
426 | map <Esc>[8~ <End> |
396
2f02fa724f42
add session autoload/save when servername is set
Meredith Howard <mhoward@roomag.org>
parents:
370
diff
changeset
|
427 | endif |
977
ba16cab3aaf3
Proper split to gvimrc
Meredith Howard <mhoward@roomag.org>
parents:
975
diff
changeset
|
428 | " }}} |