Move exports out of env and change default font
This commit is contained in:
parent
edf295ab6c
commit
7bfc26e61e
2 changed files with 4 additions and 27 deletions
|
@ -4,18 +4,18 @@
|
||||||
<!-- Set preferred serif, sans serif, and monospace fonts. -->
|
<!-- Set preferred serif, sans serif, and monospace fonts. -->
|
||||||
<alias>
|
<alias>
|
||||||
<family>serif</family>
|
<family>serif</family>
|
||||||
<prefer><family>Input Mono Regular</family></prefer>
|
<prefer><family>InputMono Nerd Font Complete Mono Windows Compatible</family></prefer>
|
||||||
</alias>
|
</alias>
|
||||||
<alias>
|
<alias>
|
||||||
<family>sans-serif</family>
|
<family>sans-serif</family>
|
||||||
<prefer><family>Input Mono Regular</family></prefer>
|
<prefer><family>InputMono Nerd Font Complete Mono Windows Compatible</family></prefer>
|
||||||
</alias>
|
</alias>
|
||||||
<alias>
|
<alias>
|
||||||
<family>sans</family>
|
<family>sans</family>
|
||||||
<prefer><family>Input Mono Regular</family></prefer>
|
<prefer><family>InputMono Nerd Font Complete Mono Windows Compatible</family></prefer>
|
||||||
</alias>
|
</alias>
|
||||||
<alias>
|
<alias>
|
||||||
<family>monospace</family>
|
<family>monospace</family>
|
||||||
<prefer><family>Input Mono Regular</family></prefer>
|
<prefer><family>InputMono Nerd Font Complete Mono Windows Compatible</family></prefer>
|
||||||
</alias>
|
</alias>
|
||||||
</fontconfig>
|
</fontconfig>
|
||||||
|
|
|
@ -1,31 +1,8 @@
|
||||||
export LANG="en_US.UTF-8"
|
|
||||||
export LANGUAGE="en_US"
|
|
||||||
export LC_CTYPE="de_DE.UTF-8"
|
|
||||||
export LC_NUMERIC="de_DE.UTF-8"
|
|
||||||
export LC_TIME="de_DE.UTF-8"
|
|
||||||
export LC_COLLATE="de_DE.UTF-8"
|
|
||||||
export LC_MONETARY="de_DE.UTF-8"
|
|
||||||
export LC_MESSAGES="de_DE.UTF-8"
|
|
||||||
export LC_PAPER="de_DE.UTF-8"
|
|
||||||
export LC_NAME="de_DE.UTF-8"
|
|
||||||
export LC_ADDRESS="de_DE.UTF-8"
|
|
||||||
export LC_TELEPHONE="de_DE.UTF-8"
|
|
||||||
export LC_MEASUREMENT="de_DE.UTF-8"
|
|
||||||
export LC_IDENTIFICATION="de_DE.UTF-8"
|
|
||||||
export LC_ALL="de_DE.UTF-8"
|
|
||||||
|
|
||||||
# Don't check for new mail
|
|
||||||
export MAILCHECK=1
|
|
||||||
|
|
||||||
export GOPATH=$HOME/.golang
|
|
||||||
export FONTCONFIG_PATH=/etc/fonts
|
|
||||||
|
|
||||||
export UID=$(id -u)
|
export UID=$(id -u)
|
||||||
export GID=$(id -g)
|
export GID=$(id -g)
|
||||||
|
|
||||||
export MAKEOPTS="-j$(cat /proc/cpuinfo | awk -F: '$1 ~ /cpu cores/ { print $2 }' | head -n 1 | tr -d ' ')"
|
export MAKEOPTS="-j$(cat /proc/cpuinfo | awk -F: '$1 ~ /cpu cores/ { print $2 }' | head -n 1 | tr -d ' ')"
|
||||||
|
|
||||||
export PATH=$PATH:~/.local/bin:~/bin:
|
|
||||||
export EDITOR=vim
|
export EDITOR=vim
|
||||||
|
|
||||||
if [ -n "$(command -v composer)" ]; then
|
if [ -n "$(command -v composer)" ]; then
|
||||||
|
|
Loading…
Reference in a new issue