This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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\]" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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 |