dev: automated commit - 2025-05-31 15:50:49

This commit is contained in:
Mariano Z. 2025-05-31 15:50:49 -03:00
parent 6629b42952
commit 9076125efa
7 changed files with 62 additions and 54 deletions

View file

@ -59,8 +59,8 @@
plain = blue plain = blue
[interactive] [interactive]
diffFilter = diff-so-fancy --patch ; diffFilter = diff-so-fancy --patch
signlekey = true singlekey = true
[credential] [credential]
helper = /usr/lib/git-core/git-credential-libsecret helper = /usr/lib/git-core/git-credential-libsecret
@ -77,8 +77,8 @@
renames = copies renames = copies
interHunkContext = 10 interHunkContext = 10
[pager] ; [pager]
pager = diff-so-fancy | $PAGER ; pager = diff-so-fancy | less --tabs=4 -RF
[diff-so-fancy] [diff-so-fancy]
markEmptyLines = false markEmptyLines = false

View file

@ -10,8 +10,10 @@
o = checkout o = checkout
p = pull p = pull
r = restore r = restore
cleanout = restore
rs = restore --staged rs = restore --staged
s = status s = status
ush = push
# Frequently used commands # Frequently used commands
aa = add --all aa = add --all

View file

@ -211,8 +211,8 @@ print_section "System Status"
# Disk usage with duf # Disk usage with duf
print_task "Checking disk usage" print_task "Checking disk usage"
if command -v duf &>/dev/null; then if command -v dysk &>/dev/null; then
duf --only local dysk
else else
print_warning "duf not found. Using df instead. Consider installing duf for better disk usage display." print_warning "duf not found. Using df instead. Consider installing duf for better disk usage display."
df -h | grep -v "tmpfs" | grep -v "udev" df -h | grep -v "tmpfs" | grep -v "udev"

View file

@ -10,6 +10,8 @@ node = "20"
dotnet-core = "8.0.401" dotnet-core = "8.0.401"
bun = "1.2.4" bun = "1.2.4"
go = "1.24.1" go = "1.24.1"
ruby = "3.2"
caddy = "latest"
[settings] [settings]
# plugins can read the versions files used by other version managers (if enabled by the plugin) # plugins can read the versions files used by other version managers (if enabled by the plugin)

View file

@ -19,7 +19,8 @@ alias vairix='cd ~/Development/vairix'
alias seekr='cd ~/Development/seekr' alias seekr='cd ~/Development/seekr'
# File operations/utilities # File operations/utilities
alias df="duf" # alias df="duf"
alias df="dysk"
alias mkdir="mkdir -pv" alias mkdir="mkdir -pv"
alias chmox="chmod +x" alias chmox="chmod +x"
alias lf="yazi" alias lf="yazi"
@ -92,3 +93,6 @@ fi
alias la='ll -a' alias la='ll -a'
alias tree='ll --tree --level=2' alias tree='ll --tree --level=2'
alias valheim="cd ~/.config/r2modmanPlus-local/Valheim/profiles/Default/ && ./start_server_bepinex.sh"

View file

@ -299,12 +299,12 @@ if command -v bombadil &> /dev/null; then eval "$(bombadil generate-completions
if command -v eza &> /dev/null; then compdef eza=ls; fi if command -v eza &> /dev/null; then compdef eza=ls; fi
# ALIASES # ALIASES
yarn() { echo 🖕; } # yarn() { echo 🖕; }
yarnpkg() { echo 🖕; } # yarnpkg() { echo 🖕; }
pnpm() { echo 🖕; } # pnpm() { echo 🖕; }
pn() { echo 🖕; } # pn() { echo 🖕; }
pnpx() { echo 🖕; } # pnpx() { echo 🖕; }
npm() { echo 🖕; } # npm() { echo 🖕; }
alias p='_package_manager' alias p='_package_manager'
alias fo='fopen' alias fo='fopen'

Binary file not shown.