35 lines
920 B
Bash
35 lines
920 B
Bash
#!/bin/sh
|
|
|
|
. "$HOME/.config/user-dirs.dirs"
|
|
. "$XDG_CONFIG_HOME/locale.conf"
|
|
|
|
export CM_LAUNCHER='rofi'
|
|
|
|
export DRONE_SERVER='https://ci.serguzim.me'
|
|
|
|
export EDITOR='/usr/bin/vim'
|
|
|
|
export GOPATH="$XDG_DATA_HOME/go"
|
|
|
|
export KUBECONFIG="$HOME/.kube/config"
|
|
|
|
export MAILCAPS="$XDG_CONFIG_HOME/mailcap/mailcaprc"
|
|
export MAKEFLAGS="-j$(grep -c ^processor /proc/cpuinfo)"
|
|
export MARKPATH="$XDG_CONFIG_HOME/zsh/jump_marks"
|
|
|
|
export NOTMUCH_CONFIG="$XDG_CONFIG_HOME/notmuch/config"
|
|
|
|
export OPENFAAS_URL="https://faas.serguzim.me"
|
|
export OSH="$XDG_CONFIG_HOME/bash/oh-my-bash"
|
|
|
|
export PASSWORD_STORE_GENERATED_LENGTH='64'
|
|
export PATH=$HOME/.local/bin:/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:$GOPATH/bin
|
|
|
|
export VIMINIT="source $XDG_CONFIG_HOME/vim/vimrc"
|
|
|
|
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
|
|
export ZSH="$ZDOTDIR/oh-my-zsh"
|
|
|
|
### conditionals
|
|
|
|
[ -x "$(command -v bat)" ] && export MANPAGER="sh -c 'col -bx | bat -l man -p'"
|