35 lines
1.2 KiB
Plaintext
Raw Normal View History

2021-02-19 21:34:24 +01: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
2024-01-05 17:50:12 +01:00
# >>> define PATH variable as an array
2021-02-19 21:34:24 +01:00
typeset -U path
2024-01-05 17:50:12 +01:00
# <<< define PATH variable as an array
2021-02-19 21:34:24 +01:00
# >>> 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 <<<
# >>> environment variables >>>
2021-11-01 00:05:07 +01:00
export BROWSER=qutebrowser
2023-08-08 10:39:00 +02:00
export EDITOR=$([[ $(command -v lvim) ]] && echo lvim || echo vim)
2023-04-26 16:29:30 +02:00
export TERMINAL=alacritty
2023-04-04 11:38:34 +02:00
# export FZF_DEFAULT_COMMAND='rg --files --no-ignore --hidden --follow --glob "!.git/*"'
2023-04-24 19:47:04 +02:00
export GEM_HOME="$(ruby -e 'puts Gem.user_dir')"
export PATH="$PATH:$GEM_HOME/bin"
2021-02-19 21:34:24 +01:00
export MYVIMRC="${HOME}/.vimrc"
export PASSWORD_STORE_DIR="${HOME}/Private/.password-store"
export PASSWORD_STORE_ENABLE_EXTENSIONS=True
2021-05-05 21:54:21 +02:00
export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u)/bus
2023-08-05 15:52:16 +02:00
export ZK_NOTEBOOK_DIR="${HOME}/Notes"
2024-01-05 17:50:12 +01:00
export OPENAI_API_KEY="$(pass _api_keys/openai_perso-1)"
2021-10-04 21:04:08 +02:00
# <<< environment variables <<<
2021-02-19 21:34:24 +01:00
# }}} End personnal configuration directives