Victor Franzi - Git Sources dotfiles / 9c89110
switching to vim-plug rotsix 7 years ago
12 changed file(s) with 48 addition(s) and 297 deletion(s). Raw diff Collapse all Expand all
00 *.swp
11 *~
2
3 # neovim plugins
4 neovim/.config/nvim/plugged/*
5 neovim/.config/nvim/autoload/*
33 [submodule "tmux/.tmux.laptop/plugins/tpm"]
44 path = tmux/.tmux.laptop/plugins/tpm
55 url = https://github.com/tmux-plugins/tpm
6 [submodule "neovim/.config/nvim/bundle/colorizer"]
7 path = neovim/.config/nvim/bundle/colorizer
8 url = https://github.com/lilydjwg/colorizer
9 [submodule "neovim/.config/nvim/bundle/lightline.vim"]
10 path = neovim/.config/nvim/bundle/lightline.vim
11 url = https://github.com/itchyny/lightline.vim
12 [submodule "neovim/.config/nvim/bundle/supertab"]
13 path = neovim/.config/nvim/bundle/supertab
14 url = https://github.com/ervandew/supertab.git
15 [submodule "neovim/.config/nvim/bundle/vim-nerdtree-tabs"]
16 path = neovim/.config/nvim/bundle/vim-nerdtree-tabs
17 url = https://github.com/jistr/vim-nerdtree-tabs.git
18 [submodule "neovim/.config/nvim/bundle/delimitMate"]
19 path = neovim/.config/nvim/bundle/delimitMate
20 url = https://github.com/Raimondi/delimitMate.git
21 [submodule "neovim/.config/nvim/bundle/nerdtree"]
22 path = neovim/.config/nvim/bundle/nerdtree
23 url = https://github.com/scrooloose/nerdtree.git
24 [submodule "neovim/.config/nvim/bundle/tabular"]
25 path = neovim/.config/nvim/bundle/tabular
26 url = https://github.com/godlygeek/tabular.git
27 [submodule "neovim/.config/nvim/bundle/vim-sensible"]
28 path = neovim/.config/nvim/bundle/vim-sensible
29 url = https://github.com/tpope/vim-sensible.git
+0
-266
neovim/.config/nvim/autoload/pathogen.vim less more
0 " pathogen.vim - path option manipulation
1 " Maintainer: Tim Pope <http://tpo.pe/>
2 " Version: 2.4
3
4 " Install in ~/.vim/autoload (or ~\vimfiles\autoload).
5 "
6 " For management of individually installed plugins in ~/.vim/bundle (or
7 " ~\vimfiles\bundle), adding `execute pathogen#infect()` to the top of your
8 " .vimrc is the only other setup necessary.
9 "
10 " The API is documented inline below.
11
12 if exists("g:loaded_pathogen") || &cp
13 finish
14 endif
15 let g:loaded_pathogen = 1
16
17 " Point of entry for basic default usage. Give a relative path to invoke
18 " pathogen#interpose() or an absolute path to invoke pathogen#surround().
19 " Curly braces are expanded with pathogen#expand(): "bundle/{}" finds all
20 " subdirectories inside "bundle" inside all directories in the runtime path.
21 " If no arguments are given, defaults "bundle/{}", and also "pack/{}/start/{}"
22 " on versions of Vim without native package support.
23 function! pathogen#infect(...) abort
24 if a:0
25 let paths = filter(reverse(copy(a:000)), 'type(v:val) == type("")')
26 else
27 let paths = ['bundle/{}', 'pack/{}/start/{}']
28 endif
29 if has('packages')
30 call filter(paths, 'v:val !~# "^pack/[^/]*/start/[^/]*$"')
31 endif
32 let static = '^\%([$~\\/]\|\w:[\\/]\)[^{}*]*$'
33 for path in filter(copy(paths), 'v:val =~# static')
34 call pathogen#surround(path)
35 endfor
36 for path in filter(copy(paths), 'v:val !~# static')
37 if path =~# '^\%([$~\\/]\|\w:[\\/]\)'
38 call pathogen#surround(path)
39 else
40 call pathogen#interpose(path)
41 endif
42 endfor
43 call pathogen#cycle_filetype()
44 if pathogen#is_disabled($MYVIMRC)
45 return 'finish'
46 endif
47 return ''
48 endfunction
49
50 " Split a path into a list.
51 function! pathogen#split(path) abort
52 if type(a:path) == type([]) | return a:path | endif
53 if empty(a:path) | return [] | endif
54 let split = split(a:path,'\\\@<!\%(\\\\\)*\zs,')
55 return map(split,'substitute(v:val,''\\\([\\,]\)'',''\1'',"g")')
56 endfunction
57
58 " Convert a list to a path.
59 function! pathogen#join(...) abort
60 if type(a:1) == type(1) && a:1
61 let i = 1
62 let space = ' '
63 else
64 let i = 0
65 let space = ''
66 endif
67 let path = ""
68 while i < a:0
69 if type(a:000[i]) == type([])
70 let list = a:000[i]
71 let j = 0
72 while j < len(list)
73 let escaped = substitute(list[j],'[,'.space.']\|\\[\,'.space.']\@=','\\&','g')
74 let path .= ',' . escaped
75 let j += 1
76 endwhile
77 else
78 let path .= "," . a:000[i]
79 endif
80 let i += 1
81 endwhile
82 return substitute(path,'^,','','')
83 endfunction
84
85 " Convert a list to a path with escaped spaces for 'path', 'tag', etc.
86 function! pathogen#legacyjoin(...) abort
87 return call('pathogen#join',[1] + a:000)
88 endfunction
89
90 " Turn filetype detection off and back on again if it was already enabled.
91 function! pathogen#cycle_filetype() abort
92 if exists('g:did_load_filetypes')
93 filetype off
94 filetype on
95 endif
96 endfunction
97
98 " Check if a bundle is disabled. A bundle is considered disabled if its
99 " basename or full name is included in the list g:pathogen_blacklist or the
100 " comma delimited environment variable $VIMBLACKLIST.
101 function! pathogen#is_disabled(path) abort
102 if a:path =~# '\~$'
103 return 1
104 endif
105 let sep = pathogen#slash()
106 let blacklist =
107 \ get(g:, 'pathogen_blacklist', get(g:, 'pathogen_disabled', [])) +
108 \ pathogen#split($VIMBLACKLIST)
109 if !empty(blacklist)
110 call map(blacklist, 'substitute(v:val, "[\\/]$", "", "")')
111 endif
112 return index(blacklist, fnamemodify(a:path, ':t')) != -1 || index(blacklist, a:path) != -1
113 endfunction
114
115 " Prepend the given directory to the runtime path and append its corresponding
116 " after directory. Curly braces are expanded with pathogen#expand().
117 function! pathogen#surround(path) abort
118 let sep = pathogen#slash()
119 let rtp = pathogen#split(&rtp)
120 let path = fnamemodify(a:path, ':s?[\\/]\=$??')
121 let before = filter(pathogen#expand(path), '!pathogen#is_disabled(v:val)')
122 let after = filter(reverse(pathogen#expand(path, sep.'after')), '!pathogen#is_disabled(v:val[0:-7])')
123 call filter(rtp, 'index(before + after, v:val) == -1')
124 let &rtp = pathogen#join(before, rtp, after)
125 return &rtp
126 endfunction
127
128 " For each directory in the runtime path, add a second entry with the given
129 " argument appended. Curly braces are expanded with pathogen#expand().
130 function! pathogen#interpose(name) abort
131 let sep = pathogen#slash()
132 let name = a:name
133 if has_key(s:done_bundles, name)
134 return ""
135 endif
136 let s:done_bundles[name] = 1
137 let list = []
138 for dir in pathogen#split(&rtp)
139 if dir =~# '\<after$'
140 let list += reverse(filter(pathogen#expand(dir[0:-6].name, sep.'after'), '!pathogen#is_disabled(v:val[0:-7])')) + [dir]
141 else
142 let list += [dir] + filter(pathogen#expand(dir.sep.name), '!pathogen#is_disabled(v:val)')
143 endif
144 endfor
145 let &rtp = pathogen#join(pathogen#uniq(list))
146 return 1
147 endfunction
148
149 let s:done_bundles = {}
150
151 " Invoke :helptags on all non-$VIM doc directories in runtimepath.
152 function! pathogen#helptags() abort
153 let sep = pathogen#slash()
154 for glob in pathogen#split(&rtp)
155 for dir in map(split(glob(glob), "\n"), 'v:val.sep."/doc/".sep')
156 if (dir)[0 : strlen($VIMRUNTIME)] !=# $VIMRUNTIME.sep && filewritable(dir) == 2 && !empty(split(glob(dir.'*.txt'))) && (!filereadable(dir.'tags') || filewritable(dir.'tags'))
157 silent! execute 'helptags' pathogen#fnameescape(dir)
158 endif
159 endfor
160 endfor
161 endfunction
162
163 command! -bar Helptags :call pathogen#helptags()
164
165 " Execute the given command. This is basically a backdoor for --remote-expr.
166 function! pathogen#execute(...) abort
167 for command in a:000
168 execute command
169 endfor
170 return ''
171 endfunction
172
173 " Section: Unofficial
174
175 function! pathogen#is_absolute(path) abort
176 return a:path =~# (has('win32') ? '^\%([\\/]\|\w:\)[\\/]\|^[~$]' : '^[/~$]')
177 endfunction
178
179 " Given a string, returns all possible permutations of comma delimited braced
180 " alternatives of that string. pathogen#expand('/{a,b}/{c,d}') yields
181 " ['/a/c', '/a/d', '/b/c', '/b/d']. Empty braces are treated as a wildcard
182 " and globbed. Actual globs are preserved.
183 function! pathogen#expand(pattern, ...) abort
184 let after = a:0 ? a:1 : ''
185 let pattern = substitute(a:pattern, '^[~$][^\/]*', '\=expand(submatch(0))', '')
186 if pattern =~# '{[^{}]\+}'
187 let [pre, pat, post] = split(substitute(pattern, '\(.\{-\}\){\([^{}]\+\)}\(.*\)', "\\1\001\\2\001\\3", ''), "\001", 1)
188 let found = map(split(pat, ',', 1), 'pre.v:val.post')
189 let results = []
190 for pattern in found
191 call extend(results, pathogen#expand(pattern))
192 endfor
193 elseif pattern =~# '{}'
194 let pat = matchstr(pattern, '^.*{}[^*]*\%($\|[\\/]\)')
195 let post = pattern[strlen(pat) : -1]
196 let results = map(split(glob(substitute(pat, '{}', '*', 'g')), "\n"), 'v:val.post')
197 else
198 let results = [pattern]
199 endif
200 let vf = pathogen#slash() . 'vimfiles'
201 call map(results, 'v:val =~# "\\*" ? v:val.after : isdirectory(v:val.vf.after) ? v:val.vf.after : isdirectory(v:val.after) ? v:val.after : ""')
202 return filter(results, '!empty(v:val)')
203 endfunction
204
205 " \ on Windows unless shellslash is set, / everywhere else.
206 function! pathogen#slash() abort
207 return !exists("+shellslash") || &shellslash ? '/' : '\'
208 endfunction
209
210 function! pathogen#separator() abort
211 return pathogen#slash()
212 endfunction
213
214 " Convenience wrapper around glob() which returns a list.
215 function! pathogen#glob(pattern) abort
216 let files = split(glob(a:pattern),"\n")
217 return map(files,'substitute(v:val,"[".pathogen#slash()."/]$","","")')
218 endfunction
219
220 " Like pathogen#glob(), only limit the results to directories.
221 function! pathogen#glob_directories(pattern) abort
222 return filter(pathogen#glob(a:pattern),'isdirectory(v:val)')
223 endfunction
224
225 " Remove duplicates from a list.
226 function! pathogen#uniq(list) abort
227 let i = 0
228 let seen = {}
229 while i < len(a:list)
230 if (a:list[i] ==# '' && exists('empty')) || has_key(seen,a:list[i])
231 call remove(a:list,i)
232 elseif a:list[i] ==# ''
233 let i += 1
234 let empty = 1
235 else
236 let seen[a:list[i]] = 1
237 let i += 1
238 endif
239 endwhile
240 return a:list
241 endfunction
242
243 " Backport of fnameescape().
244 function! pathogen#fnameescape(string) abort
245 if exists('*fnameescape')
246 return fnameescape(a:string)
247 elseif a:string ==# '-'
248 return '\-'
249 else
250 return substitute(escape(a:string," \t\n*?[{`$\\%#'\"|!<"),'^[+>]','\\&','')
251 endif
252 endfunction
253
254 " Like findfile(), but hardcoded to use the runtimepath.
255 function! pathogen#runtime_findfile(file,count) abort
256 let rtp = pathogen#join(1,pathogen#split(&rtp))
257 let file = findfile(a:file,rtp,a:count)
258 if file ==# ''
259 return ''
260 else
261 return fnamemodify(file,':p')
262 endif
263 endfunction
264
265 " vim:set et sw=2 foldmethod=expr foldexpr=getline(v\:lnum)=~'^\"\ Section\:'?'>1'\:getline(v\:lnum)=~#'^fu'?'a1'\:getline(v\:lnum)=~#'^endf'?'s1'\:'=':
+0
-0
neovim/.config/nvim/bundle/colorizer less more
(Empty file)
+0
-0
neovim/.config/nvim/bundle/delimitMate less more
(Empty file)
+0
-0
neovim/.config/nvim/bundle/lightline.vim less more
(Empty file)
+0
-0
neovim/.config/nvim/bundle/nerdtree less more
(Empty file)
+0
-0
neovim/.config/nvim/bundle/supertab less more
(Empty file)
+0
-0
neovim/.config/nvim/bundle/tabular less more
(Empty file)
+0
-0
neovim/.config/nvim/bundle/vim-nerdtree-tabs less more
(Empty file)
+0
-0
neovim/.config/nvim/bundle/vim-sensible less more
(Empty file)
00 set nocompatible
1 call pathogen#infect()
2 call pathogen#helptags()
1
2
3 """"
4 " auto-install vim-plug + plugins
5 if empty(glob('~/.config/nvim/autoload/plug.vim'))
6 silent !curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
7 autocmd VimEnter * PlugInstall
8 endif
9
10 call plug#begin('~/.config/nvim/plugged')
11 " colorize all text in the form #rgb, #rgba, #rrggbb, #rrggbbaa, rgb(…), rgba(…)
12 Plug 'https://github.com/lilydjwg/colorizer'
13 " status bar
14 Plug 'https://github.com/itchyny/lightline.vim'
15 " auto-completion with tab-key
16 Plug 'https://github.com/ervandew/supertab.git'
17 " same NERDTree on all tabs
18 Plug 'https://github.com/jistr/vim-nerdtree-tabs.git'
19 " auto-close backets…
20 Plug 'https://github.com/Raimondi/delimitMate.git'
21 " trololo, NERDTree
22 Plug 'https://github.com/scrooloose/nerdtree.git', {'on': 'NERDTreeToggle' }
23 " tabs, easy
24 Plug 'https://github.com/godlygeek/tabular.git'
25 "
26 Plug 'https://github.com/tpope/vim-sensible.git'
27 " prettier parentheses
28 Plug 'https://github.com/kien/rainbow_parentheses.vim'
29 " colorscheme
30 Plug 'https://github.com/junegunn/seoul256.vim'
31 call plug#end()
32 """"
33
334
435 syntax on
536 set number
2657 filetype indent on
2758
2859
29 set background=dark
30 let g:solarized_termcolors=256
3160 colorscheme brogrammer
32 "colorscheme dracula
33
34
3561 hi Normal ctermbg=none
3662 hi CursorLine ctermbg=none
3763 " hi Cursorline cterm=bold term=bold gui=bold
85111 autocmd vimenter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
86112
87113 au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
114 """"
115
116
117 """"
118 " always-on colorize parentheses
119 "au VimEnter * RainbowParenthesesToggle
120 au Syntax * RainbowParenthesesLoadRound
121 au Syntax * RainbowParenthesesLoadSquare
122 au Syntax * RainbowParenthesesLoadBraces
123 au Syntax * RainbowParenthesesActivate
88124 """"
89125
90126
169205 return winwidth(0) > 60 ? lightline#mode() : ''
170206 endfunction
171207
208 " hide -- INSERT bar
172209 set noshowmode
173210 """"
174211