-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathenv
More file actions
27 lines (24 loc) · 1.74 KB
/
Copy pathenv
File metadata and controls
27 lines (24 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
export XDG_3RD_PARTY="${HOME}/3rd-party" # Where 3rd party git users directories should be stored
export XDG_CACHE_HOME="${HOME}/.cache" # Where user non-essential data files should be stored
export XDG_CONFIG_HOME="${HOME}/.config" # Where user configuration files should be stored
export XDG_DATA_HOME="${HOME}/.local/share" # Where user data files should be stored
export XDG_LOCAL_HOME="${HOME}/.local" # Where user main dirs should be stored
CMAKE_PREFIX_PATH=$(find ~/Qt -maxdepth 2 -type d -name "gcc_64" | sort --reverse | head -n 1)
CMAKE_GENERATOR=Ninja
if [ "$(uname -o)" == "Msys" ]; then CMAKE_GENERATOR="MSYS Makefiles"; fi
export CMAKE_GENERATOR
export DPREFIX="${XDG_DATA_HOME}/darling"
export EDITOR=nvim
export FREESTANDING="-fdata-sections -ffreestanding -ffunction-sections -fno-asynchronous-unwind-tables -fno-exceptions -fno-rtti -fno-stack-check -fno-stack-protector -mno-stack-arg-probe -fno-unwind-tables -nostdlib -nostdinc -fno-stack-clash-protection -Wl,-n,--build-id=none,-gc-sections -static"
export HISTCONTROL=ignoreboth # No duplicate and no space-starting lines
export HISTSIZE=1000 # History live should have this many lines
export JULIA_DEPOT_PATH="${HOME}/.local/.julia"
export JULIAUP_DEPOT_PATH="${HOME}/.local/.julia"
export LESS=-R
export MOZ_ENABLE_WAYLAND=1 # Enable Wayland usage for Mozilla Firefox
export PASSWORD_STORE_GENERATED_LENGTH=12
export PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring
export WGET2RC="${XDG_CONFIG_HOME}/wget2/config"
export WINEPREFIX="${XDG_DATA_HOME}/wine"
export GCC_COLORS="error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01"
export PATH="/usr/sbin:${HOME}/.local/bin:${HOME}/.local/shell/$(hostname):${HOME}/.local/shell:${CMAKE_PREFIX_PATH}/bin:${PATH}"