Skip to content

Instantly share code, notes, and snippets.

@ChrisPenner
Last active August 29, 2015 14:19
Show Gist options
  • Save ChrisPenner/cd21706c6aa01c6f0e0b to your computer and use it in GitHub Desktop.
Save ChrisPenner/cd21706c6aa01c6f0e0b to your computer and use it in GitHub Desktop.
Reminders in Terminal

Throw this at the bottom of your .profile file (or .bashrc). Quick and easy reminders for yourself that are displayed every time you fire up a terminal prompt.

# Sticky-notes:
alias note="vim ~/dotfiles/messages"
alias notes="cat ~/dotfiles/messages"
notes

I usually use this to remind myself of some new Vim commands I'm trying to integrate into my workflow.

  • $ notes lists your current notes
  • $ note opens vim to add a new note.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment