aboutsummaryrefslogtreecommitdiffstats
path: root/.zsh.after
diff options
context:
space:
mode:
authorDavid Runge <david.runge@frqrec.com>2014-04-08 18:45:44 +0200
committerDavid Runge <david.runge@frqrec.com>2014-04-08 18:45:44 +0200
commit1723ef848ddd7f15dc77625c159fc0c20de1e980 (patch)
tree501ae626649fcd508b720123c54801ab6a9ffcb0 /.zsh.after
parente1748b56b18b386be32cf000789b23f7d1ba83da (diff)
downloaddotfiles-1723ef848ddd7f15dc77625c159fc0c20de1e980.tar.gz
dotfiles-1723ef848ddd7f15dc77625c159fc0c20de1e980.tar.bz2
dotfiles-1723ef848ddd7f15dc77625c159fc0c20de1e980.tar.xz
dotfiles-1723ef848ddd7f15dc77625c159fc0c20de1e980.zip
Added grep alias for home directory and changed the way octave starts
Diffstat (limited to '.zsh.after')
-rw-r--r--.zsh.after/aliases.zsh5
1 files changed, 4 insertions, 1 deletions
diff --git a/.zsh.after/aliases.zsh b/.zsh.after/aliases.zsh
index b1c8c3e..57106eb 100644
--- a/.zsh.after/aliases.zsh
+++ b/.zsh.after/aliases.zsh
@@ -30,6 +30,8 @@ alias llt='ls -ltr'
alias la='ls -A'
alias lla='ls -lA'
+#grep aliases (with excluded directories)
+alias grepdot='grep -rI --exclude-dir=".steam" --exclude-dir=".local" --exclude-dir=".thunderbird" --exclude-dir=".mozilla" --exclude-dir="git" --exclude-dir=".rvm" --exclude-dir=".log" --exclude-dir=".dropbox-dist" --exclude-dir=".config" '
## systemd related aliases
alias psc='ps xawf -eo pid,user,cgroup,args'
@@ -128,7 +130,8 @@ alias cd.syncarchlinux="cd /home/dave/Dropbox/sync/archlinux"
alias cd.scpref="cd /home/dave/.config/SuperCollider"
#program aliases
-alias octave="octave --silent --braindead"
+#alias octave="octave --silent --braindead --force-gui"
+alias octave="octave --force-gui"
alias matlabc="matlab -nodesktop -nosplash"
alias "dbrestart"="dropbox stop && dropbox start"
alias psgrep='ps xa | grep $1'