Improve configs

This commit is contained in:
Tobias Reisinger 2024-09-13 15:37:17 +02:00
parent 2fbed7c001
commit 25ef6e6605
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
4 changed files with 20 additions and 8 deletions

View file

@ -15,6 +15,9 @@
*.swp
*.swo
# Profiling/Debugging/Coverage
default_*.profraw
# Latex
/latexmk_output/

View file

@ -14,6 +14,7 @@
du-dust # du alternative
eza # ls-alternative
faas-cli # cli for openfaas
figlet # tool to create ascii art
fzf # fuzzy finder
git # git
gitflow # tool for git workflow

View file

@ -24,6 +24,11 @@ windowrulev2 = workspace $ws_msg silent, class:(thunderbird)
windowrulev2 = workspace $ws_msg silent, class:(Signal)
# General rules
windowrulev2 = noblur, class:^$ # intended for menus. not sure about side-effects
# Specific rules
windowrulev2 = float, class:(xdg-desktop-portal-gtk)

View file

@ -31,13 +31,16 @@ zle -N atuin-up-cond _atuin_up_cond
zle -N atuin-up-cond-vicmd _atuin_up_cond_vicmd
zle -N atuin-up-cond-viins _atuin_up_cond_viins
# Bind keys
bindkey -M emacs '^[[A' atuin-up-cond
bindkey -M vicmd '^[[A' atuin-up-cond-vicmd
bindkey -M viins '^[[A' atuin-up-cond-viins
if [ -x "$(command -v atuin)" ]
then
# Bind keys
bindkey -M emacs '^[[A' atuin-up-cond
bindkey -M vicmd '^[[A' atuin-up-cond-vicmd
bindkey -M viins '^[[A' atuin-up-cond-viins
bindkey -M emacs '^[OA' atuin-up-cond
bindkey -M vicmd '^[OA' atuin-up-cond-vicmd
bindkey -M viins '^[OA' atuin-up-cond-viins
bindkey -M emacs '^[OA' atuin-up-cond
bindkey -M vicmd '^[OA' atuin-up-cond-vicmd
bindkey -M viins '^[OA' atuin-up-cond-viins
bindkey -M vicmd 'k' atuin-up-cond-vicmd
bindkey -M vicmd 'k' atuin-up-cond-vicmd
fi