Skip to content

Instantly share code, notes, and snippets.

View aphilas's full-sized avatar

Neville aphilas

  • Nairobi, Kenya
View GitHub Profile
@aphilas
aphilas / .bashrc.sh
Created July 29, 2023 10:25
Barebones bash config
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
alias grep='grep --color=auto'
PS1='[\u@\h \W]\$ '