this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use HomeBrew to manage dependencies

+36 -13
+35
Brewfile
··· 1 + tap 'homebrew/bundle' 2 + tap 'homebrew/core' 3 + tap 'neovim/neovim' 4 + tap 'universal-ctags/universal-ctags' 5 + 6 + brew 'elixir' 7 + brew 'node' 8 + brew 'phantomjs' 9 + 10 + # Git 11 + brew 'hub' 12 + brew 'git' 13 + 14 + # Ruby 15 + brew 'ruby-build' 16 + brew 'rbenv' 17 + brew 'rbenv-default-gems' 18 + 19 + # Editor 20 + brew 'neovim' 21 + 22 + # Shell 23 + brew 'fish' 24 + 25 + # Utils 26 + brew 'the_silver_searcher' 27 + brew 'tmux' 28 + brew 'htop' 29 + brew 'tree' 30 + brew 'wget' 31 + brew 'universal-ctags', args: %w(HEAD) 32 + 33 + # DB 34 + brew 'postgresql' 35 + brew 'redis'
+1 -1
fish/Makefile
··· 4 4 5 5 install: 6 6 $(LN) ${PWD} $(XDG_CONFIG_HOME)/fish 7 - fish -c 'fin' 7 + fish -c 'fundle install' 8 8 9 9 functions/fin.fish: 10 10 $(WGET) -O$@ https://raw.githubusercontent.com/fisherman/fin/master/fin.fish
-12
nvim/autoload/plug.vim
··· 428 428 for name in a:000 429 429 call s:lod([name], ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin']) 430 430 endfor 431 - <<<<<<< Updated upstream 432 - call s:doautocmd('BufRead') 433 - ======= 434 431 call s:dobufread(a:000) 435 - >>>>>>> Stashed changes 436 432 return 1 437 433 endfunction 438 434 ··· 482 478 483 479 function! s:lod_cmd(cmd, bang, l1, l2, args, names) 484 480 call s:lod(a:names, ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin']) 485 - <<<<<<< Updated upstream 486 - call s:doautocmd('BufRead') 487 - ======= 488 481 call s:dobufread(a:names) 489 - >>>>>>> Stashed changes 490 482 execute printf('%s%s%s %s', (a:l1 == a:l2 ? '' : (a:l1.','.a:l2)), a:cmd, a:bang, a:args) 491 483 endfunction 492 484 493 485 function! s:lod_map(map, names, prefix) 494 486 call s:lod(a:names, ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin']) 495 - <<<<<<< Updated upstream 496 - call s:doautocmd('BufRead') 497 - ======= 498 487 call s:dobufread(a:names) 499 - >>>>>>> Stashed changes 500 488 let extra = '' 501 489 while 1 502 490 let c = getchar(0)