diff options
| -rw-r--r-- | .bashrc | 7 | 
1 files changed, 6 insertions, 1 deletions
| @@ -5,9 +5,13 @@  # If not running interactively, don't do anything  [[ $- != *i* ]] && return -alias ls='ls --color=auto' +alias ls='ls -lah --color=auto'  PS1='[\u@\h \W]\$ ' +if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then +  exec startx +fi +  alias cfgc='/usr/bin/git --git-dir=$HOME/.mycfg_cross_platform/ --work-tree=$HOME'  alias cfgl='/usr/bin/git --git-dir=$HOME/.mycfg_local/ --work-tree=$HOME' @@ -17,3 +21,4 @@ export XDG_DATA_HOME="$HOME/.local/share"  export SSH_AUTH_SOCK="XDG_RUNTIME_DIR/ssh-agent.socket" +export MANPAGER='nvim +Man!' | 
