this repo has no description
1
fork

Configure Feed

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

Ruby config

+10 -10
+1 -1
Makefile
··· 4 4 export WGET = wget -Nq --show-progress 5 5 6 6 export PWD = $(shell pwd) 7 - TARGETS = nvim tmux git conky gdb 7 + TARGETS = nvim tmux git conky gdb ruby 8 8 9 9 all: $(TARGETS) lein 10 10
+1 -9
README.md
··· 20 20 21 21 2. Run 22 22 23 - $ make 23 + $ make -s 24 24 25 25 Copyrights 26 26 ---------- ··· 29 29 30 30 [t]: http://twitter.com/hauleth "Just follow me" 31 31 [blog]: http://lukasz.niemier.pl "Awesome Fantasy Rubist" 32 - 33 - [nvim]: https://neovim.io/ "NeoVim" 34 - [pow-fonts]: https://github.com/Lokaltog/powerline-fonts "Some fonts with extras" 35 - [ctags]: http://ctags.sourceforge.net/ "Exuberant Ctags" 36 - [rbenv]: http://rbenv.org/ "Manage Ruby versions" 37 - [conky]: http://conky.sourceforge.net/ "Conky - Linux system monitor" 38 - [pry]: http://pryrepl.org/ "Great Ruby REPL" 39 - [ag]: https://github.com/ggreer/the_silver_searcher "The Silver Searcher"
+8
ruby/Makefile
··· 1 + install: 2 + $(LN) pryrc ${HOME}/.pryrc 3 + $(LN) gemrc ${HOME}/.gemrc 4 + 5 + clean: 6 + rm ${HOME}/.pryrc ${HOME}/.gemrc 7 + 8 + .PHONY: install clean