dev: automated commit - 2025-09-28 19:29:58

This commit is contained in:
Mariano Z. 2025-09-28 19:29:58 -03:00
parent c9829cac0f
commit efa863631d
7 changed files with 140 additions and 111 deletions

View file

@ -1,5 +1,5 @@
[Desktop Entry]
Name=DBeaver
Name=DBeaver Marian
GenericName=SQL Database Client
Comment=Universal Database Manager and SQL Client.
Exec=env GDK_BACKEND=x11 GTK_THEME=Raleigh dbeaver

View file

@ -22,3 +22,5 @@ text/x-dockerfile=nvim-kitty.desktop
application/xml=nvim-kitty.desktop
application/x-extension-html=nvim-kitty.desktop
x-scheme-handler/discord=vesktop.desktop
x-scheme-handler/msteams=teams-for-linux.desktop
inode/directory=nemo.desktop

View file

@ -71,7 +71,7 @@
"bypass": false,
"enable-vad": true,
"input-gain": 0.0,
"model-path": "",
"model-name": "",
"output-gain": 0.0,
"release": 20.0,
"vad-thres": 50.0,

View file

@ -5,10 +5,10 @@
[core]
autocrlf = input
excludesfile = ~/.config/git/.gitignore
compression = 9
whitespace = error
preloadindex = true
excludesfile = ~/.config/git/gitignore
[include]
path = ~/.config/git/gitalias.ini

View file

@ -88,3 +88,30 @@ elif [[ -n "${ZSH_VERSION:-}" ]]; then
compdef _yay_zsh_completion yay
fi
_use_node_completion() {
local -a versions
local script_dir=""
# Find the script directory
if [ -f "./use-node.sh" ]; then
script_dir="."
else
# Find the actual script location
script_dir="$(dirname "$(readlink -f ~/.local/bin/use-node 2>/dev/null || echo ~/.local/bin/use-node)")"
fi
# Get versions from nodejs-* directories only
if [ -d "$script_dir" ]; then
versions=($(find "$script_dir" -maxdepth 1 -type d -name "nodejs-*" 2>/dev/null | sed 's/.*nodejs-/node@/'))
fi
if [[ ${#versions[@]} -gt 0 ]]; then
_describe 'node versions' versions
fi
}
# Register the completion
compdef _use_node_completion ./use-node.sh
compdef _use_node_completion use-node.sh
compdef _use_node_completion use-node

View file

@ -723,7 +723,7 @@ yay() {
# System update
update|"-Syu")
echo "Updating NixOS system..."
nh os switch ~/.config/nixos --update
nh os switch ~/.config/nixos --update --ask
;;
# Search packages
@ -781,7 +781,7 @@ EOF
# Default: rebuild system
"")
echo "Rebuilding NixOS system..."
nh os switch ~/.config/nixos
nh os switch ~/.config/nixos --ask
;;
# Try to install unknown commands

View file

@ -80,6 +80,6 @@ source "$ZDOTDIR/rose-pine.sh"
# Defer loading
zsh-defer source "$PLUGIN_DIR/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
for config in mise.zsh tmux.zsh functions.zsh alias.zsh keymap.zsh path.zsh pnpm.zsh; do
for config in tmux.zsh functions.zsh alias.zsh keymap.zsh path.zsh pnpm.zsh; do
zsh-defer source "$ZDOTDIR/$config"
done