Skip to content

@ambertx
ambertx / .bashrc
Created April 13, 2016 16:01
Set fish to start as default shell
ssh-agent fish
exit
alias brc="vim ~/.bashrc; . ~/.bashrc"
@NAlexPear
NAlexPear / .bashrc
Last active January 26, 2017 23:42
My standard .bashrc for Xubuntu environments
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@BlazOrazem
BlazOrazem / .bashrc
Last active May 8, 2016 09:44
BashRC for Git use
# SSH Environment
# SSH_ENV=$HOME/.ssh/environment
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# Don't put duplicate lines in the history. See bash(1) for more options
@lmr3796
lmr3796 / .bashrc
Created March 23, 2016 07:33
To show some branch info
export EDITOR=vim
source $HOME/.git-prompt.sh
export GIT_PS1_SHOWDIRTYSTATE=1
export GIT_PS1_SHOWUPSTREAM="auto"
export GIT_PS1_SHOWCOLORHINTS="auto"
export GIT_PS1_SHOWSTASHSTATE="true"
export PS1=$PS1'\[\033[1;37m\]\w\[\033[0;33m\]$(__git_ps1 " (%s)") \[\033[0;37m\]\$\[\033[00m\] '
@t0rr3sp3dr0
t0rr3sp3dr0 / .bashrc
Last active September 14, 2016 15:22
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
# bashrc for c9 workspaces
# by Yerko Palma
. /etc/apache2/envvars
# If not running interactively, don't do anything else
[ -z "$PS1" ] && return
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
function t2conda () {
ssh -t t2a006170 "export https_proxy=proxy.noc.titech.ac.jp:3128;conda $@"
}
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@reinaldons
reinaldons / .bashrc
Last active September 2, 2016 12:08
Append for Kubuntu .bashrc
# autoenv
. /usr/local/bin/activate.sh
. /usr/share/virtualenvwrapper/virtualenvwrapper.sh
. ~/.bash_prompt
export GOROOT=/usr/lib/go-1.6
export PATH=$PATH:$GOROOT/bin