2025-04-18_auto-backup_tracked

This commit is contained in:
Quinn
2025-04-18 16:20:59 +02:00
committed by Quinn
parent d0810ea95b
commit b693e501cc
7 changed files with 57 additions and 15 deletions

34
.bashrc
View File

@@ -5,6 +5,10 @@
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
[[ -z "${PS1-}" ]] && return
# check the window size after each command (and if necessary, the values of LINES and COLUMNS)
shopt -s checkwinsize
# history settings
HISTCONTROL=ignoreboth # don't put duplicate lines or lines starting with space in the history.
@@ -33,7 +37,7 @@ eval "$(_AUTO_CPUFREQ_COMPLETE=bash_source auto-cpufreq)"
# aliases for colour
alias dir='dir --color=auto'
alias vdir='vdir --color=auto'
alias ls='eza -Abh --colour=auto'
alias ls='eza -Abhg --colour=auto'
alias grep='grep --colour=auto'
alias diff='diff --color'
alias ip='ip -c'
@@ -41,21 +45,45 @@ alias ip='ip -c'
# application aliases
alias ncdu='ncdu --color=dark -t 16'
alias hyfetch='hyfetch --ascii-file $HOME/.config/hyfetch-ascii'
alias bat='bat --wrap never --tabs 4 --theme gruvbox-dark'
alias make='make -j'
# aliases to avoid mistakes
alias cp='cp -i'
alias mv='mv -i'
#alias rm='rm -i'
alias :qa='exit'
alias :q='exit'
alias py3='python3'
alias hgit='git --git-dir=$HOME/.home-conf.git --work-tree=$HOME'
__git_complete hgit __git_main
# opt out of dotnet's telenetry
# vcpkg shit
export VCPKG_ROOT=$HOME/.local/share/vcpkg
export PATH=$VCPKG_ROOT:$PATH
source /home/user/.local/share/vcpkg/scripts/vcpkg_completion.bash
# opt out of Microsoft's telemetry bullshit
export DOTNET_CLI_TELEMETRY_OPTOUT=1
export VCPKG_DISABLE_METRICS=1
# customise less
# Have less display colours
# from: https://wiki.archlinux.org/index.php/Color_output_in_console#man
export LESS_TERMCAP_mb=$'\e[1;31m' # begin bold
export LESS_TERMCAP_md=$'\e[1;33m' # begin blink
export LESS_TERMCAP_so=$'\e[01;44;37m' # begin reverse video
export LESS_TERMCAP_us=$'\e[01;37m' # begin underline
export LESS_TERMCAP_me=$'\e[0m' # reset bold/blink
export LESS_TERMCAP_se=$'\e[0m' # reset reverse video
export LESS_TERMCAP_ue=$'\e[0m' # reset underline
# customise man pager to use the correct parameters
export MANPAGER='less -s -M +Gg'
# cute lil hyfetch :3
if [[ $TERM == "xterm-kitty" ]]; then
hyfetch
hyfetch
fi