this repo has no description
1
fork

Configure Feed

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

Utilities folder

+13 -1
+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 ruby 7 + TARGETS = nvim tmux git conky gdb ruby utils 8 8 9 9 all: $(TARGETS) lein 10 10
ctags utils/ctags
dir_colors utils/dir_colors
+12
utils/Makefile
··· 1 + dir-colors: 2 + $(LN) dir_colors ${HOME}/.dir_colors 3 + 4 + ctags: 5 + $(LN) ctags ${HOME}/.ctags 6 + 7 + install: dir-colors ctags 8 + 9 + clear: 10 + rm ${HOME}/.dir_colors ${HOME}/.ctags 11 + 12 + .PHONY: install clear ctags dir-colors