Skip to content

Commit a8cd7d1

Browse files
committed
add clippings
1 parent 7d2f8e4 commit a8cd7d1

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

zsh.d/starling.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,19 @@ export PERSONAL_MARKDOWN_NOTES_DIR="$HOME/Documents/archives/docs/personal_markd
1616
alias cdpn="cd $PERSONAL_MARKDOWN_NOTES_DIR"
1717
alias opn='open "obsidian://open?vault=personal_markdown_notes"'
1818

19+
export CLIPPINGS_NOTES_DIR="$HOME/Documents/archives/docs/clippings"
20+
alias cdc="cd $CLIPPINGS_NOTES_DIR"
21+
alias oc='open "obsidian://open?vault=clippings"'
22+
1923
function rgn() {
2024
rg -i $@ "${PERSONAL_MARKDOWN_NOTES_DIR}"
2125
rg -i $@ "${MARKDOWN_NOTES_DIR}"
2226
}
2327

28+
function rgc() {
29+
rg -i $@ "${CLIPPINGS_NOTES_DIR}"
30+
}
31+
2432
# golang paths
2533
export GOPATH=$WORKSPACE_DIR/go
2634

zshrc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,8 @@ alias duc='du -sh *(/)'
122122
# starts a server on port 8000 that makes the current directory browsable with a webbrowser
123123
alias webshare='python -m SimpleHTTPServer'
124124

125+
alias ws='windsurf'
126+
125127
function drma() {
126128
## docker remove all containers
127129
[[ -z $(docker ps -aq) ]] || docker rm -f $(docker ps -aq)
@@ -226,4 +228,6 @@ fi
226228
local this_host="${HOME}/.zsh.d/${HOST}.sh"
227229
if [ -e ${this_host} ]; then
228230
. ${this_host}
229-
fi
231+
fi
232+
# Added by Windsurf
233+
export PATH="/Users/tednaleid/.codeium/windsurf/bin:$PATH"

0 commit comments

Comments
 (0)