diff options
Diffstat (limited to '')
-rw-r--r-- | bashrc | 26 |
1 files changed, 25 insertions, 1 deletions
@@ -384,7 +384,31 @@ append_to_masterlist() { cat "$ml" } -[ -f ~/.fzf.bash ] && source ~/.fzf.bash +# Colors for ls - yellow directories +# export LS_COLORS="$LS_COLORS:di=1;33" +# Install Ruby Gems to ~/gems +export GEM_HOME="$HOME/gems" + + +# note() { +# printf "%s\n" "$(date +"%Y-%m-%d: ") $1" >> notes.txt +# } + +# log() { +# printf "%s\n" "$(date +"%Y-%m-%d: ") $*" >> ~/Documents/Notes/Scratch/scratchpad.md +# } + +log() { + printf "%s\n" "$(date +"%Y-%m-%d %A: ") $*" >> ~/Documents/Notes/Scratch/scratchpad.txt +} + +doo() { + printf "%s\n" "- [ ] $*" >> ~/Documents/Notes/Scratch/scratchpad.txt +} + +idea() { + printf "%s\n" "IDEA: $*" >> ~/Documents/Notes/Scratch/scratchpad.txt +} # Setting PATH export PATH=~/bin/:$PATH |