summaryrefslogtreecommitdiff
path: root/config/bash/bashrc
blob: 2692a4b229dd9fce7dc8205f9f37fce0337b6f8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Minimal bash config for servers

set -o vi
stty -ixon # Disable ctrl-s and ctrl-q for freezing prompt
shopt -s autocd # automatically cd into typed directory

alias vi=vim
alias vi=nvim

PS1='\e[01;31m$(code=${?##0};echo ${code:+[${code}]" "})\e[00m\u@\H \w % '

if [ -f "${XDG_CONFIG_HOME:-$HOME/.config}/shell/aliasrc" ];then
	source "${XDG_CONFIG_HOME:-$HOME/.config}/shell/aliasrc"
fi