diff --git a/.DS_Store b/.DS_Store index 69f643d..6e6a938 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/mac/.zshrc b/mac/.zshrc index f716d4f..5a564f2 100644 --- a/mac/.zshrc +++ b/mac/.zshrc @@ -46,6 +46,7 @@ alias docs="cd ~/Documents" alias dt="cd ~/Desktop" alias down="cd ~/Downloads" alias one="cd ~/OneDrive" +alias gdrive="cd ~/Google\ Drive" ### Aliases ### @@ -132,7 +133,7 @@ gvi() { neovide.exe "$target" else if command -v neovide > /dev/null; then - neovide "$target" + neovide "$target" & else echo "neovide is not installed" fi diff --git a/mac/shortcuts/finder_open.applescript b/mac/shortcuts/finder_open.applescript new file mode 100644 index 0000000..7ab435c --- /dev/null +++ b/mac/shortcuts/finder_open.applescript @@ -0,0 +1,4 @@ +tell application "Finder" + activate + make new Finder window +end tell