File tree 2 files changed +13
-1
lines changed
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,19 @@ export PERSONAL_MARKDOWN_NOTES_DIR="$HOME/Documents/archives/docs/personal_markd
16
16
alias cdpn=" cd $PERSONAL_MARKDOWN_NOTES_DIR "
17
17
alias opn=' open "obsidian://open?vault=personal_markdown_notes"'
18
18
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
+
19
23
function rgn() {
20
24
rg -i $@ " ${PERSONAL_MARKDOWN_NOTES_DIR} "
21
25
rg -i $@ " ${MARKDOWN_NOTES_DIR} "
22
26
}
23
27
28
+ function rgc() {
29
+ rg -i $@ " ${CLIPPINGS_NOTES_DIR} "
30
+ }
31
+
24
32
# golang paths
25
33
export GOPATH=$WORKSPACE_DIR /go
26
34
Original file line number Diff line number Diff line change @@ -122,6 +122,8 @@ alias duc='du -sh *(/)'
122
122
# starts a server on port 8000 that makes the current directory browsable with a webbrowser
123
123
alias webshare=' python -m SimpleHTTPServer'
124
124
125
+ alias ws=' windsurf'
126
+
125
127
function drma() {
126
128
# # docker remove all containers
127
129
[[ -z $( docker ps -aq) ]] || docker rm -f $( docker ps -aq)
226
228
local this_host=" ${HOME} /.zsh.d/${HOST} .sh"
227
229
if [ -e ${this_host} ]; then
228
230
. ${this_host}
229
- fi
231
+ fi
232
+ # Added by Windsurf
233
+ export PATH=" /Users/tednaleid/.codeium/windsurf/bin:$PATH "
You can’t perform that action at this time.
0 commit comments