massive update, probably broken
[dotfiles/.git] / .config / bashrc / exports
1 #!/bin/bash
2 export EDITOR=vim;
3 export VISUAL=nvim; #Nano is the main editor
4 export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
5 export PATH="$HOME/.local/bin:$PATH";
6 export PATH="$HOME/.gem/ruby/2.7.0/bin:$PATH";
7 ## HERE I'LL EXPORT SOME STUFF TO CLEAN MY HOME DIR
8 export GEM_HOME="$XDG_DATA_HOME"/gem;
9 export GEM_SPEC_CACHE="$XDG_CACHE_HOME"/gem;
10 export KDEHOME="$XDG_CONFIG_HOME"/kde;
11 export MPLAYER_HOME="$XDG_CONFIG_HOME"/mplayer;
12 #colorman
13 if $_isxrunning; then
14   export PAGER=less
15   export LESS_TERMCAP_mb=$'\E[01;31m'       # begin blinking
16   export LESS_TERMCAP_md=$'\E[01;38;5;74m'  # begin bold
17   export LESS_TERMCAP_me=$'\E[0m'           # end mode
18   export LESS_TERMCAP_se=$'\E[0m'           # end standout-mode
19   export LESS_TERMCAP_so=$'\E[38;5;246m'    # begin standout-mode - info box
20   export LESS_TERMCAP_ue=$'\E[0m'           # end underline
21   export LESS_TERMCAP_us=$'\E[04;38;5;146m' # begin underline
22 fi
23
24 export TIME_STYLE="+%Y-%m-%d %H:%M:%S %z"