Bruno BELANYI
8d2f357c8c
Switching to Termite because URxvt has weird rendering issues when resizing the font. i3-sensible-terminal needs the TERMINAL environment variable to launch our prefered terminal emulator with the Ctrl+d binding. Bash and Zsh both need a hook to enable Termite to open another terminal in the same directory with the Ctrl+Maj+t binding.
25 lines
924 B
Bash
25 lines
924 B
Bash
# Add our scripts to the path
|
|
PATH="$HOME/scripts:$PATH"
|
|
|
|
# Export our favorite editor
|
|
export EDITOR=vim
|
|
export VISUAL=$EDITOR # Also use it when asking for a GUI
|
|
# Export our terminal for i3-sensible-terminal
|
|
export TERMINAL=termite
|
|
|
|
# Color ls output depending on filetype with dircolors
|
|
[ -e "/etc/DIR_COLORS" ] && DIR_COLORS="/etc/DIR_COLORS"
|
|
[ -e "$HOME/.dircolors" ] && DIR_COLORS="$HOME/.dircolors"
|
|
[ -e "$DIR_COLORS" ] || DIR_COLORS=""
|
|
eval "`dircolors -b $DIR_COLORS`"
|
|
|
|
# Allow for colorful man pages
|
|
export LESS=-R
|
|
export LESS_TERMCAP_mb=$'\E[1;31m' # begin blink
|
|
export LESS_TERMCAP_md=$'\E[1;36m' # begin bold
|
|
export LESS_TERMCAP_me=$'\E[0m' # reset bold/blink
|
|
export LESS_TERMCAP_so=$'\E[01;44;33m' # begin reverse video
|
|
export LESS_TERMCAP_se=$'\E[0m' # reset reverse video
|
|
export LESS_TERMCAP_us=$'\E[1;32m' # begin underline
|
|
export LESS_TERMCAP_ue=$'\E[0m' # reset underline
|