mirror of
https://github.com/mitchell/dotfiles.git
synced 2026-08-10 08:09:35 +00:00
feat(zsh): add zsh config
This commit is contained in:
parent
46354f8c99
commit
4ddcc04e96
3 changed files with 122 additions and 0 deletions
19
zsh/dot-zshenv
Normal file
19
zsh/dot-zshenv
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
export EDITOR='nvim'
|
||||
export DIFFPROG='delta'
|
||||
|
||||
export FZF_CTRL_T_COMMAND='fd --type f --type d --hidden --exclude ".git/"'
|
||||
export FZF_DEFAULT_COMMAND='fd --type f --type d --hidden --exclude ".git/"'
|
||||
export FZF_ALT_C_COMMAND='fd --type d --hidden --exclude ".git/"'
|
||||
|
||||
export GOPATH="$HOME/code/go"
|
||||
export GOBIN="$GOPATH/bin"
|
||||
|
||||
export BUN_INSTALL="$HOME/.bun"
|
||||
export PNPM_HOME="$HOME/.local/share/pnpm"
|
||||
|
||||
PATH="$BUN_INSTALL/bin:$PATH"
|
||||
PATH="$PNPM_HOME/bin:$PATH"
|
||||
PATH="$GOBIN:$PATH"
|
||||
PATH="$HOME/.local/bin:$PATH"
|
||||
PATH="$HOME/code/scripts:$PATH"
|
||||
export PATH
|
||||
Loading…
Add table
Add a link
Reference in a new issue