2021-04-01 17:00:33 +00:00
|
|
|
#!/bin/sh
|
2020-07-15 13:50:56 +00:00
|
|
|
|
2021-04-01 17:00:33 +00:00
|
|
|
. "$HOME/.config/user-dirs.dirs"
|
|
|
|
. "$XDG_CONFIG_HOME/locale.conf"
|
2021-02-18 11:00:51 +00:00
|
|
|
|
|
|
|
export CM_LAUNCHER='rofi'
|
2020-11-18 14:40:36 +00:00
|
|
|
|
2021-03-19 10:56:50 +00:00
|
|
|
export DRONE_SERVER='https://ci.serguzim.me'
|
|
|
|
|
2020-07-15 13:50:56 +00:00
|
|
|
export EDITOR='/usr/bin/vim'
|
2020-12-23 15:39:36 +00:00
|
|
|
|
2021-02-23 15:33:23 +00:00
|
|
|
export GOPATH="$XDG_DATA_HOME/go"
|
2020-12-23 15:39:36 +00:00
|
|
|
|
2021-04-07 10:39:01 +00:00
|
|
|
export KUBECONFIG="$HOME/.kube/config"
|
2020-12-23 15:39:36 +00:00
|
|
|
|
2021-02-23 15:33:23 +00:00
|
|
|
export MAILCAPS="$XDG_CONFIG_HOME/mailcap/mailcaprc"
|
2021-04-07 10:39:01 +00:00
|
|
|
export MAKEFLAGS="-j$(grep -c ^processor /proc/cpuinfo)"
|
2021-02-23 15:33:23 +00:00
|
|
|
export MARKPATH="$XDG_CONFIG_HOME/zsh/jump_marks"
|
2020-12-23 15:39:36 +00:00
|
|
|
|
2021-02-23 15:33:23 +00:00
|
|
|
export NOTMUCH_CONFIG="$XDG_CONFIG_HOME/notmuch/config"
|
2020-12-23 15:39:36 +00:00
|
|
|
|
2021-02-27 02:03:19 +00:00
|
|
|
export OPENFAAS_URL="https://faas.serguzim.me"
|
2021-02-23 15:33:23 +00:00
|
|
|
export OSH="$XDG_CONFIG_HOME/bash/oh-my-bash"
|
2020-07-15 13:50:56 +00:00
|
|
|
|
2021-02-13 21:52:08 +00:00
|
|
|
export PASSWORD_STORE_GENERATED_LENGTH='64'
|
2021-02-23 15:33:23 +00:00
|
|
|
export PATH=$HOME/.local/bin:/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:$GOPATH/bin
|
2020-12-23 15:39:36 +00:00
|
|
|
|
2021-02-23 15:33:23 +00:00
|
|
|
export VIMINIT="source $XDG_CONFIG_HOME/vim/vimrc"
|
2020-12-23 15:39:36 +00:00
|
|
|
|
2021-02-23 15:33:23 +00:00
|
|
|
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
|
2021-02-13 21:52:08 +00:00
|
|
|
export ZSH="$ZDOTDIR/oh-my-zsh"
|
2021-02-23 15:33:23 +00:00
|
|
|
|
|
|
|
### conditionals
|
|
|
|
|
|
|
|
[ -x "$(command -v bat)" ] && export MANPAGER="sh -c 'col -bx | bat -l man -p'"
|