dotfiles/.bashrc

22 lines
471 B
Bash
Raw Normal View History

2020-12-14 02:45:11 +00:00
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
PS1='\[\033[01;31m\]\w \$\[\033[00m\] '
alias vncserve=`x11vnc -display :0 -forever -o /var/log/x11vnc.log -bg`
export TZ =: "Europe/London"
export LC_ALL=en_GB.UTF-8
export LANG=en_GB.UTF-8
export CLICOLOR=1
export LS_COLORS="di=32:ln=32:so=33:pi=36:ex=35:bd=34:cd=34;43:su=30;41:sg=30;46:tw=30;42:ow=30;43"
export EDITOR=nano
export PAGER=less