Skip to content

Instantly share code, notes, and snippets.

## SMARTER TAB-COMPLETION (Readline bindings) ##
# Perform file completion in a case insensitive fashion
set completion-ignore-case on
# Treat hyphens and underscores as equivalent
set completion-map-case on
# Display matches for ambiguous patterns at first tab press
set show-all-if-ambiguous on
#!/usr/bin/env bash
# Customizations for PM2 logs and Git
# Colors for better visualization
blk="\[\e[1;30m\]"
red="\[\e[1;31m\]"
grn="\[\e[1;32m\]"
ylw="\[\e[1;33m\]"
blu="\[\e[1;34m\]"