As configured in my dotfiles.
start new:
tmux
start new with session name:
| NO_COLOR=\033[0m | |
| OK_COLOR=\033[32;01m | |
| ERROR_COLOR=\033[31;01m | |
| WARN_COLOR=\033[33;01m | |
| DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...) | |
| deps: | |
| @echo "$(OK_COLOR)==> Installing dependencies$(NO_COLOR)" | |
| @go get -d -v ./... | |
| @echo $(DEPS) | xargs -n1 go get -d |
| #!/usr/bin/env bash | |
| # Things to do after install ArchLinux (2012.12.01) | |
| pacman --noconfirm -S sudo | |
| # Enabled archlinuxfr repo | |
| arch=$(uname -m) | |
| sudo cp /etc/pacman.conf /etc/pacman.conf.bak | |
| echo "" >> /etc/pacman.conf | |
| echo "[archlinuxfr]" >> /etc/pacman.conf |
As configured in my dotfiles.
start new:
tmux
start new with session name: