this repo has no description
1
fork

Configure Feed

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

Update README

+63 -29
+3 -3
Makefile
··· 1 - LNFLAGS = -rsiT 1 + LNFLAGS = -sfT 2 2 export LN = ln $(LNFLAGS) 3 3 4 - export WGET = wget -Nq --show-progress 4 + export WGET = wget -Nqnv 5 5 6 6 export PWD = $(shell pwd) 7 7 8 - TARGETS ?= nvim tmux git conky gdb ruby utils bin fish nix 8 + TARGETS ?= nix fish bin nvim tmux git conky gdb ruby utils 9 9 10 10 all: $(TARGETS) 11 11
+10
README.md
··· 9 9 create pull request (no link because if you need it, I rather won't accept your 10 10 pull request). 11 11 12 + Requirements 13 + ------------ 14 + 15 + - `fish` 16 + - `make` 17 + - `wget` 18 + - `curl` 19 + 12 20 Installation 13 21 ------------ 14 22 ··· 20 28 21 29 2. Run 22 30 31 + $ make nix fish 32 + $ wa u 23 33 $ make -s 24 34 25 35 3. To install only some of the files use:
+3 -1
conky/Makefile
··· 1 + PWD = $(shell pwd) 2 + 1 3 install: 2 - $(LN) config ${HOME}/.conkyrc 4 + $(LN) ${PWD}/config ${HOME}/.conkyrc 3 5 4 6 clean: 5 7 rm ${HOME}/.conkyrc
+5 -3
gdb/Makefile
··· 1 - dashboard: 2 - $(WGET) -O$@ http://git.io/.gdbinit 1 + PWD = $(shell pwd) 3 2 4 3 install: dashboard 5 - $(LN) dashboard ${HOME}/.gdbinit 4 + $(LN) ${PWD}/dashboard ${HOME}/.gdbinit 5 + 6 + dashboard: 7 + $(WGET) -O$@ http://git.io/.gdbinit 6 8 7 9 clean: 8 10 rm ${HOME}/.gdbinit
+17 -5
nix/Makefile
··· 1 - install: nix 2 - $(LN) . ${HOME}/.nixpkgs 3 - ${HOME}/.nix-profile/bin/nix-channel --update 4 - ${HOME}/.nix-profile/bin/nix-env -i homeEnv 5 - ${HOME}/.nix-profile/bin/nix-collect-garbage -d 1 + PWD = $(shell pwd) 2 + 3 + NIX_LINK = ${HOME}/.nix-profile 4 + NIX_DEFAULT = /nix/var/nix/profiles/default 5 + 6 + install: nix channels 7 + $(LN) ${PWD} ${HOME}/.nixpkgs 8 + ${NIX_LINK}/bin/nix-channel --update 9 + ${NIX_LINK}/bin/nix-env -i runtime 6 10 7 11 nix: install.sh 8 12 test -d "/nix" || sh install.sh 13 + 14 + path: 15 + echo "Creating ${NIX_LINK}" 16 + /nix/store/4lrli8ng5i54k14id152svvp1kvqsn92-coreutils-8.21/bin/ln -s "${NIX_DEFAULT}" "${NIX_LINK}" 17 + export PATH=${NIX_LINK}/bin:${NIX_LINK}/sbin:${PATH} 18 + 19 + channels: 20 + echo "http://nixos.org/channels/nixpkgs-unstable nixpkgs" > ${HOME}/.nix-channels
+4 -6
nix/config.nix
··· 1 1 { 2 2 packageOverrides = pkgs: 3 3 rec { 4 - homeEnv = pkgs.buildEnv { 5 - name = "homeEnv"; 4 + runtime = pkgs.buildEnv { 5 + name = "runtime"; 6 6 paths = [ 7 - languages 8 - editors 9 - scm 10 - tools 7 + pkgs.python27Full 8 + pkgs.python27Packages.pip 11 9 ]; 12 10 }; 13 11
-1
nix/install.sh
··· 1 - 2 1 #!/bin/sh 3 2 4 3 # This script installs the Nix package manager on your system by
+3 -1
nvim/Makefile
··· 1 1 XDG_CONFIG_HOME ?= ${HOME}/.config 2 2 3 + PWD = $(shell pwd) 4 + 3 5 install: python 4 - $(LN) . $(XDG_CONFIG_HOME)/nvim 6 + $(LN) ${PWD} $(XDG_CONFIG_HOME)/nvim 5 7 # nvim +PlugUpdate +qall # Currently doesn't work 6 8 @echo 'Run NeoVim and execute `:PlugInstall`' 7 9
+2 -2
ruby/Makefile
··· 1 1 install: 2 - $(LN) pryrc ${HOME}/.pryrc 3 - $(LN) gemrc ${HOME}/.gemrc 2 + $(LN) ${PWD}/pryrc ${HOME}/.pryrc 3 + $(LN) ${PWD}/gemrc ${HOME}/.gemrc 4 4 5 5 clean: 6 6 rm ${HOME}/.pryrc ${HOME}/.gemrc
+3
tmux/.gitignore
··· 1 1 /plugins/* 2 2 !/plugins/tpm 3 + 4 + /resurrect 5 + /sidebar
+4 -2
tmux/Makefile
··· 1 + PWD = $(shell pwd) 2 + 1 3 install: 2 - $(LN) init.tmux ${HOME}/.tmux.conf 3 - $(LN) . ${HOME}/.tmux 4 + $(LN) ${PWD}/init.tmux ${HOME}/.tmux.conf 5 + $(LN) ${PWD} ${HOME}/.tmux 4 6 5 7 clean: 6 8 rm ${HOME}/.tmux.conf ${HOME}/.tmux
+4 -1
tmux/init.tmux
··· 22 22 bind-key j command-prompt -p "Join pane from:" "join-pane -s '%%'" 23 23 bind-key s command-prompt -p "Send pane to:" "join-pane -t '%%'" 24 24 25 - set -g @sidebar-tree-command 'tree -C -I "tmp|vendor/bundle|target|node_modules"' 25 + set -g @sidebar-tree-command 'tree -aCI "tmp|bundle|coverage|target|node_modules|.git|log"' 26 + set -g @sidebar-tree-width '20' 26 27 27 28 # List of plugins 28 29 set -g @plugin 'tmux-plugins/tpm' ··· 32 33 set -g @plugin 'tmux-plugins/tmux-resurrect' 33 34 set -g @plugin 'tmux-plugins/tmux-yank' 34 35 set -g @plugin 'tmux-plugins/tmux-sidebar' 36 + set -g @plugin 'tmux-plugins/tmux-copycat' 37 + set -g @plugin 'tmux-plugins/tmux-open' 35 38 36 39 # Initialize TMUX plugin manager 37 40 run "$HOME/.tmux/plugins/tpm/tpm"
+2 -2
tmux/themes/agnoster.tmux
··· 20 20 set -g status-right '#(eval tmux-airline `tmux display -p "#{client_width}"`)' 21 21 set -g status-right-length 150 22 22 23 - set -g window-status-format "#[fg=colour244,bg=colour234]#I #[fg=colour240] #[default]#W " 24 - set -g window-status-current-format "#[fg=colour234,bg=colour31]#[fg=colour117,bg=colour31] #I  #[fg=colour231,bold]#W #[fg=colour31,bg=colour234,nobold]" 23 + set -g window-status-format "#[fg=colour244,bg=colour234] #I #[fg=colour240] #[default]#W" 24 + set -g window-status-current-format "#[fg=colour234,bg=colour31]#[fg=colour117,bg=colour31] #I #[fg=colour231,bold] #W #[fg=colour31,bg=colour234,nobold]" 25 25 26 26 set-window-option -g window-status-fg colour249 27 27 set-window-option -g window-status-activity-attr none
+3 -2
utils/Makefile
··· 1 + PWD = $(shell pwd) 1 2 UTILS = dir_colors ctags 2 3 3 4 $(UTILS): 4 - $(LN) $@ ${HOME}/.$@ 5 + $(LN) ${PWD}/$@ ${HOME}/.$@ 5 6 6 7 install: dir_colors ctags 7 8 8 9 clear: 9 - for util in $(UTILS); do rm $$util; done 10 + for util in $(UTILS); do rm ${HOME}/.$$util; done 10 11 11 12 .PHONY: install clear ctags dir_colors