]> id.pley.net Git - dotfiles.git/commitdiff
Update zsh aliases and settings
authorJer Noble <jer.noble@apple.com>
Fri, 29 May 2020 16:20:40 +0000 (09:20 -0700)
committerJer Noble <jer.noble@apple.com>
Fri, 29 May 2020 16:20:40 +0000 (09:20 -0700)
zsh_aliases
zsh_login
zsh_webkit_login

index 4338eefc23cd7086b3c5f7109f9271416e008f95..05e1a1054364154bdaf3917e109357fe1efcb473 100644 (file)
@@ -22,6 +22,7 @@ alias p='ps -au'
 alias tf='tail -25f'
 alias l='ls -lF'
 alias la='ls -laF'
+alias less='less -R'
 alias clr='clear'
 alias cls='clear'
 alias d='date'
@@ -85,3 +86,5 @@ function canonicalize() {
     echo $(cd $relpath; pwd -P)/$(basename $1)
     return 0
 }
+
+function sayStatus () { local _status=$?; if [[ $_status -eq 0 ]]; then say "Success"; else say "Failed"; fi; return $_status }
index 8f4f2fb16518ed8d35a6a46f31546e605b196ab4..83186801abd8b462c6b3f3c321360d0b3c572044 100644 (file)
--- a/zsh_login
+++ b/zsh_login
@@ -29,12 +29,13 @@ __git_files () {
 }
 
 setopt PROMPT_SUBST
-setopt INC_APPEND_HISTORY
 setopt SHARE_HISTORY
 setopt extended_glob
+setopt AUTO_CD
+setopt DVORAK
 
 PS1=$'%(?.😊.😡)  %(1v.%1v .)%n@%m:%(3~,.../,)%2~> '
-PATH=~/bin:$PATH
+PATH=~/bin:$PATH:~/homebrew/bin:
 
 if [[ -d ~/homebrew/bin ]]; then
        PATH=$PATH:~/homebrew/bin
index 08bb4088500729ffa7c0db1cf3ca6d774ca322f2..dfa4dfe52d4474b2e9da4afff54407cf00cdb451 100644 (file)
@@ -1,10 +1,9 @@
-#/bin/zsh
+#!/bin/zsh
 
 switchto() {
     export OLD_WEBKIT_DIR=$WEBKIT_DIR
     export WEBKIT_DIR=~/Projects/WebKit.$1
-    export WEBKIT_OUTPUTDIR=$WEBKIT_DIR/OpenSource/WebKitBuild
-    export PERP_BUILD_PATH=$WEBKIT_OUTPUTDIR
+    export PERP_BUILD_PATH=$WEBKIT_DIR/OpenSource/WebKitBuild
     if [[ "$OLD_WEBKIT_DIR" == "" ]]; then
         export PATH=$PATH:$WEBKIT_DIR/Internal/Tools/Scripts:$WEBKIT_DIR/OpenSource/Tools:$WEBKIT_DIR/OpenSource/Tools/Scripts
         export CDPATH=$CDPATH:$WEBKIT_DIR/OpenSource:$WEBKIT_DIR/OpenSource/Source:$WEBKIT_DIR/Internal
@@ -23,10 +22,12 @@ _switchto() { _arguments '1:dir:_webkit_dirs' }
 
 compdef _switchto switchto
 
-if [[ $( has subl ) == 'yes' ]]; then
+if [[ $( has sedit ) == 'yes' ]]; then
+    export GUI_EDITOR="sedit -w"
+elif [[ $( has subl ) == 'yes' ]]; then
     export GUI_EDITOR="subl -w"
 elif [[ $( has bbedit ) == 'yes' ]]; then
-    export GUI_EDITOR="bbedit -w"
+    export GUI_EDITOR="bbedit"
 elif [[ $( has mate_wait ) == 'yes' ]]; then
     export GUI_EDITOR="mate_wait"
 else