mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-04 20:49:02 +00:00
22 lines
585 B
Bash
Executable File
22 lines
585 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# shellcheck shell=bash
|
|
# vim: filetype=zsh
|
|
|
|
export DOTFILES="$HOME/.dotfiles"
|
|
|
|
# Explicitly set XDG folders
|
|
# https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
|
|
export XDG_CONFIG_HOME="$HOME/.config"
|
|
export XDG_DATA_HOME="$HOME/.local/share"
|
|
export XDG_STATE_HOME="$HOME/.local/state"
|
|
|
|
# custom variables
|
|
export XDG_BIN_HOME="$HOME/.local/bin"
|
|
export XDG_CACHE_HOME="$HOME/.cache"
|
|
export XDG_RUNTIME_DIR="$HOME/.local/run"
|
|
|
|
source "$DOTFILES/config/exports-shell"
|
|
source "$DOTFILES/config/exports-apps"
|
|
|
|
have nvim && export EDITOR="nvim"
|