20 lines
528 B
Bash
Raw Normal View History

set -o vi
2023-07-14 16:21:54 -04:00
export PROMPT='%F{green}[%T] %F{cyan}(%n@%m) %F{lightgrey}(%y) %F{cyan} %~
%F{white}%(!.>>.$>) '
2023-08-04 15:24:39 -04:00
# Alwoys use C-R for history search backward
bindkey '^R' history-incremental-search-backward
2023-08-04 15:24:39 -04:00
# Opam configurattion
[[ ! -r ~/.opam/opam-init/init.zsh ]] || source ~/.opam/opam-init/init.zsh > /dev/null 2> /dev/null
# dotnet stuff
2024-05-16 11:45:45 -05:00
if [ -f "$HOME/Library/Application Support/dnvm/env" ]; then
. "$HOME/Library/Application Support/dnvm/env"
fi
2024-06-11 16:57:44 -04:00
function service_restart() {
launchctl stop $1
launchctl start $1
}