This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Remove Defaults | |
rename-item alias:\gc gk -force | |
rename-item alias:\gcm gkm -force | |
rename-item alias:\gl gll -force | |
rename-item alias:\gsn gsnn -force | |
rename-item alias:\gm gmm -force | |
# Git | |
function git-status { git status } | |
Set-Alias -Name gst -Value git-status |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Script for installing tmux on systems where you don't have root access. | |
# tmux will be installed in $HOME/local/bin. | |
# It's assumed that wget and a C/C++ compiler are installed. | |
# exit on error | |
set -e | |
TMUX_VERSION=1.8 |
NewerOlder