Compare commits
No commits in common. "a07797c281bfc43f4dc2e85404240be752abb165" and "b0e5c8e51150fe6c8835f7e50591e5eaaca5ceda" have entirely different histories.
a07797c281
...
b0e5c8e511
@ -17,9 +17,6 @@ apply_dotfile sh
|
|||||||
apply_dotfile readline
|
apply_dotfile readline
|
||||||
apply_dotfile screen
|
apply_dotfile screen
|
||||||
|
|
||||||
apply_dotfile git
|
|
||||||
apply_dotfile xdg
|
|
||||||
|
|
||||||
apply_dotfile vim
|
apply_dotfile vim
|
||||||
|
|
||||||
apply_dotfile ruby
|
apply_dotfile ruby
|
||||||
|
|||||||
@ -109,9 +109,6 @@ if [ -r "$HOME/.env" ]; then
|
|||||||
. "$HOME/.env"
|
. "$HOME/.env"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -r "$HOME/.config/xdg/env" ]; then
|
|
||||||
. "$HOME/.config/xdg/env"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Source aliases, if they exist
|
# Source aliases, if they exist
|
||||||
if [ -f "$HOME/.aliases" ] && [ -r "$HOME/.aliases" ]; then
|
if [ -f "$HOME/.aliases" ] && [ -r "$HOME/.aliases" ]; then
|
||||||
|
|||||||
@ -1,25 +0,0 @@
|
|||||||
[branch]
|
|
||||||
sort = -committerdate
|
|
||||||
[column]
|
|
||||||
ui = auto
|
|
||||||
[tag]
|
|
||||||
sort = version:refname
|
|
||||||
[init]
|
|
||||||
defaultBranch = main
|
|
||||||
[diff]
|
|
||||||
algorithm = histogram
|
|
||||||
colorMoved = plain
|
|
||||||
mnemonicPrefix = true
|
|
||||||
renames = true
|
|
||||||
[push]
|
|
||||||
default = simple
|
|
||||||
autoSetupRemote = true
|
|
||||||
followTags = true
|
|
||||||
[fetch]
|
|
||||||
prune = true
|
|
||||||
pruneTags = true
|
|
||||||
all = true
|
|
||||||
[commit]
|
|
||||||
verbose = true
|
|
||||||
[core]
|
|
||||||
excludefiles = ~/.config/git/ignore
|
|
||||||
@ -40,7 +40,6 @@ NIX_CONF_FILE=${NIX_CONF_DIR}/nix.conf
|
|||||||
mkdir -p ${NIX_CONF_DIR}
|
mkdir -p ${NIX_CONF_DIR}
|
||||||
cat <<EOF > ${NIX_CONF_FILE}
|
cat <<EOF > ${NIX_CONF_FILE}
|
||||||
experimental-features = flakes nix-command
|
experimental-features = flakes nix-command
|
||||||
use-xdg-base-directories = true
|
|
||||||
EOF
|
EOF
|
||||||
# Conditionally add a link to system certificates for nix
|
# Conditionally add a link to system certificates for nix
|
||||||
if [ -f /etc/ssl/certs/ca-certificates.crt ]; then
|
if [ -f /etc/ssl/certs/ca-certificates.crt ]; then
|
||||||
|
|||||||
@ -1,11 +0,0 @@
|
|||||||
export XDG_DATA_HOME="${HOME}/.local/share"
|
|
||||||
export XDG_CONFIG_HOME="${HOME}/.config"
|
|
||||||
export XDG_STATE_HOME="${HOME}/.local/state"
|
|
||||||
export XDG_CACHE_HOME="${HOME}/.cache"
|
|
||||||
|
|
||||||
# Set environment variables to force programs to respect XDG that do not by default
|
|
||||||
export SCREENRC="${XDG_CONFIG_HOME}/screen/screenrc"
|
|
||||||
export GNUPGHOME="$XDG_DATA_HOME"/gnupg
|
|
||||||
export MYSQL_HISTFILE="$XDG_DATA_HOME"/mysql_history
|
|
||||||
export INPUTRC="$XDG_CONFIG_HOME"/readline/inputrc
|
|
||||||
export IRBRC="$XDG_CONFIG_HOME/irb/irbrc"
|
|
||||||
Loading…
x
Reference in New Issue
Block a user