.dotfiles/.config/environment

38 lines
957 B
Plaintext
Raw Normal View History

#!/bin/sh
2020-07-15 13:50:56 +00:00
. "$HOME/.config/user-dirs.dirs"
. "$XDG_CONFIG_HOME/locale.conf"
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'
export GOPATH="$XDG_DATA_HOME/go"
2021-04-07 10:39:01 +00:00
export KUBECONFIG="$HOME/.kube/config"
export MAILCAPS="$XDG_CONFIG_HOME/mailcap/mailcaprc"
2021-04-07 10:39:01 +00:00
export MAKEFLAGS="-j$(grep -c ^processor /proc/cpuinfo)"
export MARKPATH="$XDG_CONFIG_HOME/zsh/jump_marks"
export NOTMUCH_CONFIG="$XDG_CONFIG_HOME/notmuch/config"
2021-02-27 02:03:19 +00:00
export OPENFAAS_URL="https://faas.serguzim.me"
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'
export PATH=$HOME/.local/bin:/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:$GOPATH/bin
2021-04-09 17:15:28 +00:00
export QT_QPA_PLATFORMTHEME="qt5ct"
export VIMINIT="source $XDG_CONFIG_HOME/vim/vimrc"
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
2021-02-13 21:52:08 +00:00
export ZSH="$ZDOTDIR/oh-my-zsh"
### conditionals
[ -x "$(command -v bat)" ] && export MANPAGER="sh -c 'col -bx | bat -l man -p'"