Mercurial > repos > other > linux
view bashrc @ 75:0549e4405a51
Add "Thinking Face" and standardise the "subtract" keys
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 17 Feb 2018 19:09:53 +0000 |
parents | 21d5b52ae36f |
children | 87de05d9f75f |
line wrap: on
line source
if [ -f /etc/bashrc ]; then . /etc/bashrc fi # Use bash-completion, if available if [ -f /etc/bash_completion ]; then . /etc/bash_completion fi # Use a sane editor export EDITOR=/usr/bin/nano # Set 256-colour terminal support export TERM="screen-256color" #Import aliases test -s ~/.alias && . ~/.alias || true # Add sbins to path to make life easier (e.g. /sbin/ifconfig) export PATH=/sbin:/usr/sbin:/usr/local/sbin:$PATH #Disable man page number prompts - where there's more than one, we normally want the default (user command) version export MAN_POSIXLY_CORRECT=1 #Disable less history, because do I really search the same things enough to use it across sessions? export LESSHISTFILE=- export XDG_CACHE_HOME="$HOME/.cache" if [ "$PS1" != "" -a "${STARTED_TMUX:-x}" = x -a "${SSH_TTY:-x}" != x ] then STARTED_TMUX=1; export STARTED_TMUX sleep 1 ( (tmux has-session -t remote && tmux attach-session -t remote) || (tmux new-session -s remote) ) && exit 0 echo "tmux failed to start" fi export GTK_IM_MODULE=ibus export LS_OPTIONS="$LS_OPTIONS -p" function vcs_status { GIT_PS1_SHOWDIRTYSTATE=1 GIT_PS1_SHOWUPSTREAM=verbose . /etc/bash_completion.d/git-prompt.sh VCS_EXTRA=$(__git_ps1 "%s") if [[ "x$VCS_EXTRA" == "x" ]]; then VCS_EXTRA=$(hg branch 2>/dev/null) HG_EXTRA=$(hg prompt "{-{incoming|count}}{+{outgoing|count}}" 2>/dev/null) if [[ "x$HG_EXTRA" != "x" ]]; then VCS_EXTRA="${VCS_EXTRA} u${HG_EXTRA}" fi fi if [[ "x$VCS_EXTRA" != "x" ]]; then echo -n " ($VCS_EXTRA)" fi } # Limit long paths PROMPT_DIRTRIM=2 # Bold the command prompt and standardise on SUSE format # With colour! export PS1='\[\033[01;38;5;34m\]\u\[\033[01;38;5;28m\]@\[\033[01;38;5;34m\]\h\[\033[39m\]:\[\033[01;38;5;26m\]\w$(test "$PWD" != / && echo -n /)\[\033[39m\]\[\033[01;38;5;247m\]$(vcs_status)\[\033[39m\]>\[\033[00m\] ' # Fix "less" highlighting export LESS_TERMCAP_so=$'\033[30;48;5;247m' export LESS_TERMCAP_se=$'\033[0m' export GOPATH="$HOME/.golang" # Possible fix for Steam - https://github.com/ValveSoftware/steam-for-linux/issues/5000#issuecomment-305937612 export STEAM_RUNTIME_PREFER_HOST_LIBRARIES=0