This commit is contained in:
Joshua Daisuke Vasquez 2021-08-22 21:47:21 -04:00
parent b7a80d99a8
commit dfc34f87f7
3 changed files with 30 additions and 2 deletions

View file

@ -38,7 +38,10 @@ zstyle ':prezto:load' pmodule \
'spectrum' \
'utility' \
'completion' \
'prompt'
'prompt'\
'fasd'\
'git'\
'osx'\
#
# Autosuggestions
@ -60,7 +63,7 @@ zstyle ':prezto:load' pmodule \
#
# Set the key mapping style to 'emacs' or 'vi'.
zstyle ':prezto:module:editor' key-bindings 'emacs'
zstyle ':prezto:module:editor' key-bindings 'vi'
# Auto convert .... to ../..
# zstyle ':prezto:module:editor' dot-expansion 'yes'

View file

@ -9,3 +9,4 @@
if [[ ( "$SHLVL" -eq 1 && ! -o LOGIN ) && -s "${ZDOTDIR:-$HOME}/.zprofile" ]]; then
source "${ZDOTDIR:-$HOME}/.zprofile"
fi
source "$HOME/.cargo/env"

View file

@ -11,3 +11,27 @@ if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
fi
# Customize to your needs...
export PATH="/opt/homebrew/bin:/usr/local/bin:$PATH"
export PATH=$PATH:/usr/local/go/bin
export PATH=$PATH:/Users/least/.go/bin
export PATH=$PATH:/Users/least/Library/Python/3.8/bin
export GOPATH="${HOME}/.go"
# export GOROOT="$(brew --prefix golang)/libexec"
export GOROT="/opt/homebrew/opt/go/libexec"
alias ibrew='arch -x86_64 /usr/local/bin/brew'
alias ls='lsd'
# vi mode
bindkey -v
export EDITOR='vim'
export VISUAL='vim'
alias alass="alass-cli"
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
export PATH="$HOME/.emacs.d/bin:$PATH"
export PATH="/opt/homebrew/sbin:$PATH"
export PATH="$PATH:$HOME/.cargo/bin"
eval "$(starship init zsh)"