13 lines
452 B
Bash
13 lines
452 B
Bash
set -o vi
|
|
export PROMPT='%F{green}[%T] %F{cyan}(%n@%m) %F{lightgrey}(%y) %F{cyan} %~
|
|
%F{white}%(!.>>.$>) '
|
|
|
|
# Alwoys use C-R for history search backward
|
|
bindkey '^R' history-incremental-search-backward
|
|
|
|
# Opam configurattion
|
|
[[ ! -r ~/.opam/opam-init/init.zsh ]] || source ~/.opam/opam-init/init.zsh > /dev/null 2> /dev/null
|
|
|
|
# dotnet stuff
|
|
[[ ! -d /usr/local/share/dotnet ]] || DOTNET_ROOT=/usr/local/share/dotnet PATH=$PATH:/usr/local/share/dotnet
|