-
Notifications
You must be signed in to change notification settings - Fork 0
/
bashrc
19 lines (15 loc) · 811 Bytes
/
bashrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# ---------------------------------------------------------------------+
# file: .bashrc +
# author: Ypnose - http://ywstd.fr +
# ---------------------------------------------------------------------+
[[ $- != *i* ]] && return
# -- OPTIONS -----------------------------------------------------------
shopt -s cdspell
shopt -s expand_aliases
unset HISTFILE
# -- PROMPT ------------------------------------------------------------
# SSH_CONNECTION works with dropbear unlike SSH_CLIENT
PS1='${SSH_CONNECTION:+[\[\033[1;31m\]REMOTE\[\033[0m\]]}[\u@\h:\[\033[0;34m\]\w\[\033[0m\]]\$ '
# -- ALIASES -----------------------------------------------------------
alias ls='ls -Fh --color=auto'
alias grep='grep --color=auto'