Skip to content

Instantly share code, notes, and snippets.

@Vincinator
Created November 4, 2022 14:08
Show Gist options
  • Save Vincinator/82590e55e90119f997d30f7e2007baf6 to your computer and use it in GitHub Desktop.
Save Vincinator/82590e55e90119f997d30f7e2007baf6 to your computer and use it in GitHub Desktop.
vitodo
export TODO_SPACE="$HOME/workspace/personal/todo"
function vitodo(){
    if [ -z "$1" ]; then
        vim $TODO_SPACE/$(date +'%d_%m_%y')
    else
        vim $TODO_SPACE/$1
    fi
}

Open todo file for today

vitodo

Open todo file for a topic

vitodo some-topic
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment