1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-10 19:41:15 +02:00

synced dotfiles server branch with this branch

This commit is contained in:
TiynGER
2020-11-08 20:44:25 +01:00
parent 782b754edf
commit b54b02965e
4 changed files with 182 additions and 61 deletions

View File

@@ -2,9 +2,17 @@
# Profile file. Runs on login.
# Adds `~/.local/bin` and all subdirectories to $PATH
export PATH="$PATH:$(du "$HOME/.local/bin/" | cut -f2 | tr '\n' ':' | sed 's/:*$//')"
export PATH="$PATH:$(du "${HOME}/.local/bin/" | cut -f2 | tr '\n' ':' | sed 's/:*$//')"
export EDITOR="nvim"
export ZDOTDIR="$HOME"
export ZDOTDIR="${HOME}"
export XDG_CACHE_HOME="${HOME}/.cache"
export XDG_CONFIG_HOME="${HOME}/.config"
export XDG_DATA_HOME="${HOME}/.local/share"
export HISTFILE="${XDG_CACHE_HOME}/shhistory"
export TMUX_TMPDIR="${XDG_CACHE_HOME}/tmux"
# less/man colors
export LESS=-R
@@ -16,5 +24,5 @@ export LESS_TERMCAP_se="$(printf '%b' '[[0m')"; a="${a%_}"
export LESS_TERMCAP_us="$(printf '%b' '[[1;32m')"; a="${a%_}"
export LESS_TERMCAP_ue="$(printf '%b' '[[0m')"; a="${a%_}"
echo "$0" | grep "bash$" >/dev/null && [ -f ~/.bashrc ] && source "$HOME/.bashrc"
echo "$0" | grep "zsh$" >/dev/null && [ -f $ZDOTDIR/.zshrc ] && source "$ZDOTDIR/.zshrc"
echo "$0" | grep "bash$" >/dev/null && [ -f ~/.bashrc ] && source "${HOME}/.bashrc"
echo "$0" | grep "zsh$" >/dev/null && [ -f ${ZDOTDIR}/.zshrc ] && source "${ZDOTDIR}/.zshrc"