dotfiles/conf.d/zim/zshenv

41 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-02-19 20:34:24 +00:00
# Start configuration added by Zim install {{{
#
# User configuration sourced by all invocations of the shell
#
# Define Zim location
: ${ZIM_HOME=${ZDOTDIR:-${HOME}}/.zim}
# }}} End configuration added by Zim install
#
# Personnal configuration directives
#
typeset -U path
# >>> set PATH so it includes user's private bin if it exists >>>
path=(~/bin ~/.local/bin $path[@])
# <<< set PATH so it includes user's private bin if it exists <<<
2021-03-05 21:02:12 +00:00
# >>> active gnome-keyring >>>
if [ -n "${DESKTOP_SESSION}" ];then
eval $(gnome-keyring-daemon --start)
export SSH_AUTH_SOCK
fi
# <<< active gnome-keyring <<<
2021-02-19 20:34:24 +00:00
# >>> environment variables >>>
export EDITOR=nvim
export FZF_DEFAULT_COMMAND='rg --files --no-ignore --hidden --follow --glob "!.git/*"'
export MYVIMRC="${HOME}/.vimrc"
export PASSWORD_STORE_DIR="${HOME}/Private/.password-store"
export PASSWORD_STORE_ENABLE_EXTENSIONS=True
2021-05-05 19:54:21 +00:00
export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u)/bus
2021-10-04 19:04:08 +00:00
# <<< environment variables <<<
# >>> kitty completion >>>
# __kitty_complete
# <<< kitty completion <<<
2021-02-19 20:34:24 +00:00
# }}} End personnal configuration directives