Improve configs
This commit is contained in:
parent
2fbed7c001
commit
25ef6e6605
4 changed files with 20 additions and 8 deletions
|
@ -15,6 +15,9 @@
|
|||
*.swp
|
||||
*.swo
|
||||
|
||||
# Profiling/Debugging/Coverage
|
||||
default_*.profraw
|
||||
|
||||
# Latex
|
||||
/latexmk_output/
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue