mirror of
https://codeberg.org/hyperreal/dotfiles
synced 2024-11-01 16:53:07 +01:00
43 lines
749 B
Bash
43 lines
749 B
Bash
# vim:set ft=zsh ai et sw=4 ts=4:
|
|
#
|
|
# ~/.zshenv
|
|
|
|
## go paths
|
|
export GOPATH="${HOME}/go"
|
|
|
|
## path variable
|
|
typeset -U PATH path
|
|
path=(
|
|
/usr/local/bin
|
|
/usr/local/sbin
|
|
"${HOME}/.local/bin"
|
|
"${HOME}/bin"
|
|
"${GOPATH}/bin"
|
|
"${HOME}/.cargo/bin"
|
|
"${path[@]}"
|
|
)
|
|
export PATH
|
|
|
|
## reply-to email address
|
|
export REPLYTO="hyperreal@fedoraproject.org"
|
|
|
|
## set language
|
|
export LANG=en_US.UTF-8
|
|
|
|
## set default editor
|
|
export EDITOR="nvim"
|
|
|
|
## manpages
|
|
export MANPATH="${MANPATH:-/usr/share/man:/usr/local/share/man:/var/home/jas/.fzf/man}"
|
|
export MANPAGER="less -X"
|
|
|
|
## set pager stuffs
|
|
export PAGER="less -X"
|
|
export BAT_THEME="Catppuccin"
|
|
|
|
## set history stuffs
|
|
export HISTFILE=~/.zsh_history
|
|
export HISTSIZE=10000
|
|
export SAVEHIST=10000
|
|
|