Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

misc(zsh): cleanup environment variables #296

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions zsh/config.d/zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,20 @@ function git-home () {
cd `git rev-parse --show-toplevel`
}

export XDG_CONFIG_HOME=$HOME/.config

# tier1
export EDITOR=vim
export FZF_DEFAULT_OPTS='--height 50% --reverse --border'
export GOPATH=$HOME/go
export GHQ_ROOT=$HOME/work
export HIMKT_DOTFILES_PRIVATE_CONFIG_DIR=$XDG_CONFIG_HOME/himkt/dotfiles/zsh/config.d
export HISTFILE=$HOME/.zsh-history
export HISTSIZE=100000
export PYTHONDONTWRITEBYTECODE=1
export SAVEHIST=100000
export TIPS_HOME=$GHQ_ROOT/github.com/himkt/tips
export XDG_CONFIG_HOME=$HOME/.config

# tier2
export HIMKT_DOTFILES_PRIVATE_CONFIG_DIR=$XDG_CONFIG_HOME/himkt/dotfiles/zsh/config.d
export TIPS_HOME=$GHQ_ROOT/github.com/himkt/tips-data

language=en_US.UTF-8
# If `en_US.UTF-8` is not available, fallback to `C.utf8`
Expand Down
Loading