{
"ignored_packages":
[
],
"trim_trailing_white_space_on_save": true,
"vintage_ctrl_keys": true,
# get current branch in git repo
function parse_git_branch() {
BRANCH=`git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'`
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
# download latest libevent2 and tmux sources, and extract them somewhere | |
# (thx bluejedi for tip on latest tmux URL) | |
# | |
# at the time of writing: | |
# http://sourceforge.net/projects/levent/files/libevent/libevent-2.0/libevent-2.0.22-stable.tar.gz/download | |
# wget http://downloads.sourceforge.net/tmux/tmux-1.8.tar.gz | |
# | |
# install deps | |
yum install gcc kernel-devel make ncurses-devel |
NewerOlder