You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
PROMPT='>> '
|
|
|
|
PS1=$'\e[0;34m>> \e[0m'
|
|
|
|
#xtra minimal
|
|
|
|
#PROMPT=$'\e[0;35m % | \e[0m'
|
|
|
|
|
|
|
|
bindkey " " magic-space
|
|
|
|
|
|
|
|
# colored completion - use my LS_COLORS
|
|
|
|
zstyle ':completion:*:default' list-colors ${(s.:.)LS_COLORS}
|
|
|
|
alias ls='ls --color=auto'
|
|
|
|
alias v='vim'
|
|
|
|
alias tmux='tmux -2'
|
|
|
|
alias ttmux='tmux -2 new -s dev'
|
|
|
|
alias fdev='/home/capa/dev/firefox/firefox'
|
|
|
|
|
|
|
|
#if git pops up a gui on askpass run:
|
|
|
|
#git config --global --unset core.askpass
|
|
|
|
|
|
|
|
autoload -Uz compinit colors
|
|
|
|
compinit
|
|
|
|
colors
|
|
|
|
setopt nocheckjobs completealiases autocd cdablevars
|
|
|
|
unsetopt BG_NICE
|
|
|
|
# Zstyle
|
|
|
|
zstyle ':completion:*' menu select=2 eval "$(dircolors -b)"
|
|
|
|
zstyle ':completion:*:default' list-colors ${(s.:.)LS_COLORS}
|
|
|
|
zstyle ':completion:*' list-colors ''
|
|
|
|
zstyle ':completion:*' use-compctl false
|
|
|
|
zstyle ':completion:*' verbose true
|
|
|
|
|
|
|
|
eval $( dircolors -b $HOME/LS_COLORS )
|
|
|
|
export LS_COLORS
|
|
|
|
PATH=$PATH:$GOPATH/bin
|
|
|
|
#gopath shiz
|
|
|
|
export GOPATH="/home/capa/dev/go.dev"
|
|
|
|
export PATH="$PATH:$GOPATH/bin"
|