this repo has no description
1
fork

Configure Feed

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

Add Makefile to make configuration

+47 -1
+3
.gitignore
··· 1 1 /bin/* 2 2 !/bin/tmux-airline 3 + !/bin/cargo-cov 4 + !/bin/cargon 5 + !/bin/git-cleanup 3 6 4 7 /nvim/spell 5 8 /nvim/.netrwhist
+20
Makefile
··· 1 + LNFLAGS=-rsiT 2 + LN=ln $(LNFLAGS) 3 + 4 + WGET=wget 5 + 6 + XDG_CONFIG_HOME ?= ${HOME}/.config 7 + 8 + all: neovim lein tmux 9 + 10 + neovim: 11 + $(LN) nvim $(XDG_CONFIG_HOME)/nvim 12 + nvim +PlugUpgrade +PlugInstall +qall 13 + 14 + lein: 15 + $(WGET) -Obin/lein https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein 16 + chmod +x bin/lein 17 + 18 + tmux: 19 + $(LN) tmux.conf ${HOME}/.tmux.conf 20 + $(LN) tmux ${HOME}/.tmux
+17
bin/cargo-cov
··· 1 + #!/bin/bash 2 + PKGID="$(cargo pkgid)" 3 + [ -z "$PKGID" ] && exit 1 4 + ORIGIN="${PKGID%#*}" 5 + ORIGIN="${ORIGIN:7}" 6 + PKGNAMEVER="${PKGID##*/}" 7 + PKGNAME="${PKGNAMEVER%#*}" 8 + shift 9 + cargo test --no-run || exit $? 10 + EXE=($ORIGIN/target/debug/$PKGNAME-*) 11 + if [ ${#EXE[@]} -ne 1 ]; then 12 + echo 'Non-unique test file, retrying...' >2 13 + rm -f ${EXE[@]} 14 + cargo test --no-run || exit $? 15 + fi 16 + rm -rf $ORIGIN/target/cov 17 + kcov --verify --exclude-pattern=cargo,/usr,/lib $ORIGIN/target/cov $ORIGIN/target/debug/$PKGNAME-* "$@"
+3
bin/cargon
··· 1 + #!/bin/sh 2 + 3 + multirust run nightly cargo "$@"
+3
bin/git-cleanup
··· 1 + #!/bin/sh 2 + 3 + git branch --merged | grep -v '^*' | xargs -n1 git branch -d
+1 -1
fish/init.fish
··· 1 1 set fish_greeting (fortune zen) 2 2 # set fish_key_bindings fish_vi_key_bindings 3 3 4 - set -gx PATH $HOME/.bin $HOME/.cabal/bin $PATH 4 + set -gx PATH $HOME/.dotfiles/bin $HOME/.cabal/bin $PATH 5 5 6 6 if [ -z "$TMUX" ] 7 7 set -gx TERM xterm-256color