This commit is contained in:
2026-04-04 06:25:34 +02:00
parent 93e8a13765
commit 18ac682f98
10 changed files with 56 additions and 40 deletions
@@ -1 +1,4 @@
file:///home/kolkas/Videos Videos
file:///home/kolkas/Repositories Repositories
file:///home/kolkas/Pictures Pictures
file:///home/kolkas/Desktop file:///home/kolkas/Desktop
+16 -8
View File
@@ -1,17 +1,25 @@
[Settings] [Settings]
gtk-theme-name=catppuccin-mocha-blue-standard+default gtk-application-prefer-dark-theme=true
gtk-icon-theme-name=Papirus gtk-button-images=true
gtk-font-name=Sarasa UI SC 10 gtk-cursor-blink=true
gtk-cursor-blink-time=1000
gtk-cursor-theme-name=Bibata-Modern-Ice gtk-cursor-theme-name=Bibata-Modern-Ice
gtk-cursor-theme-size=24 gtk-cursor-theme-size=24
gtk-toolbar-style=GTK_TOOLBAR_ICONS gtk-decoration-layout=icon:minimize,maximize,close
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR gtk-enable-animations=true
gtk-button-images=0
gtk-menu-images=0
gtk-enable-event-sounds=1 gtk-enable-event-sounds=1
gtk-enable-input-feedback-sounds=0 gtk-enable-input-feedback-sounds=0
gtk-font-name=Sarasa UI SC, 10
gtk-icon-theme-name=Papirus
gtk-menu-images=true
gtk-modules=colorreload-gtk-module
gtk-primary-button-warps-slider=true
gtk-sound-theme-name=ocean
gtk-theme-name=catppuccin-mocha-blue-standard+default
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
gtk-toolbar-style=3
gtk-xft-antialias=1 gtk-xft-antialias=1
gtk-xft-dpi=122880
gtk-xft-hinting=1 gtk-xft-hinting=1
gtk-xft-hintstyle=hintslight gtk-xft-hintstyle=hintslight
gtk-xft-rgba=rgb gtk-xft-rgba=rgb
gtk-application-prefer-dark-theme=1
+11 -4
View File
@@ -1,7 +1,14 @@
[Settings] [Settings]
gtk-theme-name=catppuccin-mocha-blue-standard+default gtk-application-prefer-dark-theme=true
gtk-icon-theme-name=Papirus gtk-cursor-blink=true
gtk-font-name=Sarasa UI SC 10 gtk-cursor-blink-time=1000
gtk-cursor-theme-name=Bibata-Modern-Ice gtk-cursor-theme-name=Bibata-Modern-Ice
gtk-cursor-theme-size=24 gtk-cursor-theme-size=24
gtk-application-prefer-dark-theme=1 gtk-decoration-layout=icon:minimize,maximize,close
gtk-enable-animations=true
gtk-font-name=Sarasa UI SC, 10
gtk-icon-theme-name=Papirus
gtk-primary-button-warps-slider=true
gtk-sound-theme-name=ocean
gtk-theme-name=catppuccin-mocha-blue-standard+default
gtk-xft-dpi=122880
+10 -10
View File
@@ -2,6 +2,16 @@
[[ $- == *i* ]] || return [[ $- == *i* ]] || return
if type fish &>/dev/null; then
alias f="exec fish"
if [[ ${UY_ENABLE_FISH_AUTO_LOGIN:-0} == 1 ]] &&
[[ $(ps --no-header --pid=$PPID --format=comm) != "fish" && -z ${BASH_EXECUTION_STRING} && ${SHLVL} == 1 ]]; then
shopt -q login_shell && LOGIN_OPTION='--login' || LOGIN_OPTION=''
exec fish $LOGIN_OPTION
fi
fi
HISTCONTROL=ignoreboth HISTCONTROL=ignoreboth
HISTSIZE=16384 HISTSIZE=16384
HISTFILESIZE=32768 HISTFILESIZE=32768
@@ -52,16 +62,6 @@ if [[ ${UY_USING_SSH_AGENT:-0} == 1 ]]; then
} }
fi fi
if type fish &>/dev/null; then
alias f="exec fish"
if [[ ${UY_ENABLE_FISH_AUTO_LOGIN:-0} == 1 ]] &&
[[ $(ps --no-header --pid=$PPID --format=comm) != "fish" && -z ${BASH_EXECUTION_STRING} && ${SHLVL} == 1 ]]; then
shopt -q login_shell && LOGIN_OPTION='--login' || LOGIN_OPTION=''
exec fish $LOGIN_OPTION
fi
fi
if type starship &>/dev/null; then if type starship &>/dev/null; then
eval $(starship init bash) eval $(starship init bash)
fi fi
@@ -1,7 +1,7 @@
# ssh with encrypted private keys # ssh with encrypted private keys
# $ssh_keys should be set in advance or left empty to use the default keys # $ssh_keys should be set in advance or left empty to use the default keys
if set -q ENABLE_GPG_AGENT_SSH; and test $ENABLE_GPG_AGENT_SSH != "0";\ if set -q UY_ENABLE_GPG_AGENT_SSH; and test $UY_ENABLE_GPG_AGENT_SSH != "0";\
and type -q gpg-init; and type -q gpgconf and type -q gpg-init; and type -q gpgconf
true # do nothing true # do nothing
@@ -1,4 +1,10 @@
fpath=(~/.zfunc $fpath) if [ -d "$HOME/.zfunc" ]; then
fpath=($HOME/.zfunc $fpath)
fi
if [ -d "$HOME/.zsh/completions" ]; then
fpath=($HOME/.zsh/completions $fpath)
fi
# Cache compinit: only regenerate dump once daily # Cache compinit: only regenerate dump once daily
autoload -Uz compinit autoload -Uz compinit
@@ -29,3 +29,9 @@ fi
# Catppuccin Mocha — autosuggestions color # Catppuccin Mocha — autosuggestions color
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#6c7086" ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#6c7086"
# Vscode shell integration
if (( $+commands[code] )) && [[ "$TERM_PROGRAM" == "vscode" ]]; then
source "$(code --locate-shell-integration-path zsh)"
fi
@@ -1,2 +0,0 @@
*
!.gitignore
-12
View File
@@ -1,21 +1,9 @@
# lrx completions
fpath=(/home/kolkas/.zsh/completions $fpath)
#!/hint/zsh #!/hint/zsh
[[ $- != *i* ]] && return [[ $- != *i* ]] && return
for _f in "${XDG_CONFIG_HOME:-$HOME/.config}"/zsh/conf.d/*.zsh(N); do for _f in "${XDG_CONFIG_HOME:-$HOME/.config}"/zsh/conf.d/*.zsh(N); do
source "$_f" source "$_f"
done done
for _f in "${XDG_CONFIG_HOME:-$HOME/.config}"/zsh/funcs.d/*.zsh(N); do
source "$_f"
done
for _f in "${XDG_CONFIG_HOME:-$HOME/.config}"/zsh/funcs.d/_*(N); do
source "$_f"
done
unset _f unset _f
+2 -2
View File
@@ -1,11 +1,11 @@
[[plugin.deps]] [[plugin.deps]]
use = "yazi-rs/plugins:git" use = "yazi-rs/plugins:git"
rev = "1962818" rev = "e84f4fe"
hash = "26db011a778f261d730d4f5f8bf24b3f" hash = "26db011a778f261d730d4f5f8bf24b3f"
[[plugin.deps]] [[plugin.deps]]
use = "yazi-rs/plugins:smart-enter" use = "yazi-rs/plugins:smart-enter"
rev = "1962818" rev = "e84f4fe"
hash = "187cc58ba7ac3befd49c342129e6f1b6" hash = "187cc58ba7ac3befd49c342129e6f1b6"
[[plugin.deps]] [[plugin.deps]]