fix(zsh): better zshrc
This commit is contained in:
parent
bace8b1cc7
commit
b781e257dd
1 changed files with 16 additions and 1 deletions
17
zsh/.zshrc
17
zsh/.zshrc
|
@ -1,8 +1,23 @@
|
|||
setopt correctall
|
||||
|
||||
autoload -Uz compinit promptinit
|
||||
compinit
|
||||
promptinit
|
||||
zstyle ':completion:*' menu select
|
||||
|
||||
PROMPT='%F{yellow}%1~%f %# '
|
||||
|
||||
source /home/bca/.config/broot/launcher/bash/br
|
||||
EDITOR=nvim
|
||||
GOPATH=$HOME/.go
|
||||
export GOPATH EDITOR
|
||||
|
||||
typeset -U PATH path
|
||||
path=(
|
||||
"$HOME/.local/bin"
|
||||
"$HOME/bin"
|
||||
"$GOPATH/bin"
|
||||
"$path[@]"
|
||||
)
|
||||
export PATH
|
||||
|
||||
alias ll="ls -l"
|
||||
|
|
Loading…
Add table
Reference in a new issue