2019-07-18 23:57:06 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# --- Note-taking facilitated ---------------------------------
|
|
|
|
NOTE_PATH='/Users/w0ryn/Documents/notes';
|
|
|
|
NOTE_EXTENSION='.txt';
|
|
|
|
alias mynotes='cd $NOTE_PATH';
|
|
|
|
function note() { vim $NOTE_PATH/$1$NOTE_EXTENSION; }
|
|
|
|
function notes() { NOTE="$NOTE_PATH/$1$NOTE_EXTENSION"; [ $1 ] && [ -f $NOTE ] && vim $NOTE || vim $NOTE_PATH; }
|
2019-08-06 20:42:56 +00:00
|
|
|
|
|
|
|
# --- GIT -----------------------------------------------------
|
|
|
|
alias gitbranchcleanup='git branch -d $(git branch | sed -E "/develop|master|\*/d")'
|