]> git.sev.monster Git - dotfiles.git/blobdiff - base/.zshrc
remove useless vcs_info format atoms
[dotfiles.git] / base / .zshrc
index 4a68c80463fbf4cac173e5557db0ca151c180661..013f431a94962994b5f5e5f923e9f326b0d63ff7 100644 (file)
@@ -41,25 +41,23 @@ alias pa="$p"
 alias spa="sudo $p"
 unset p
 function s { sysctl hw.snd.default_unit${1:+=$1} }
+alias va="source bin/activate"
 
 # be paranoid
 alias cp='cp -ip'
 alias mv='mv -i'
 alias rm='rm -I'
 
-# venv
-alias activate="source bin/activate"
-
 # ports
 function portpkg {
     case "$1" {
-        build|run) ;;
-        *)
-            echo "Usage: \`portpkg <build|run>' in a port directory"
+        build|run)
+            sudo pkg install -AU $(make ${1}-depends-list |
+                                   sed 's_/usr/ports/_ _' | tr -d '\n')
+            ;;
+        *)  echo "Usage: \`portpkg <build|run>' in a port directory"
             return 1;;
     }
-    sudo pkg install -AU $(make ${1}-depends-list |
-                           sed 's_/usr/ports/_ _' | tr -d '\n')
 }
 
 ## prompt
@@ -76,9 +74,12 @@ zle -N zle-keymap-select
 
 autoload -Uz vcs_info
 zstyle ':vcs_info:*' enable git
-zstyle ':vcs_info:*' get-revision true
-zstyle ':vcs_info:git*' formats "%%F{green}[%b]%m%u%c%%f %S"
-zstyle ':vcs_info:git*' actionformats "%%F{red}(%a) %%F{green}[%b]%m%u%c%%f %S"
+zstyle ':vcs_info:git*' formats       "%c%u%%F{green}%b%%f/%%F{yellow}%S%%f"
+zstyle ':vcs_info:git*' actionformats "%%F{red}(%a)%%f %c%u%%F{green}%b%%f/\
+%%F{yellow}%S%%f"
+zstyle ':vcs_info:git*' check-for-changes true
+zstyle ':vcs_info:git*' stagedstr      "%F{blue}+"
+zstyle ':vcs_info:git*' unstagedstr    "%F{red}*"
 
 function precmd {
     print -Pn "\e]0;%(1j,%j,)%#${SSH_CLIENT+$USER@$HOST:}%~\a"
This page took 0.034596 seconds and 4 git commands to generate.