chore(deps): update cachix/cachix-action action to v15 #111
Garnix CI / check pre-commit [aarch64-linux]
failed
May 20, 2024 in 41s
Run results
Build failed
Details
Last 100 lines of logs:
# <https://github.com/Aloxaf/fzf-tab/wiki/Configuration#fzf-pad>
-if [[ "$FZF_DEFAULT_OPTS" =~ "--border" ]]; then
+if [[ $FZF_DEFAULT_OPTS =~ "--border" ]]; then
zstyle ':fzf-tab:complete:*' fzf-pad '4'
fi
@@ -19,13 +19,11 @@ zstyle ':fzf-tab:*' show-group brief
# Switch completion group using `,` and `.`
zstyle ':fzf-tab:*' switch-group ',' '.'
-
##: === KEYBINDINGS ================================================================================
# <space> to accept candidate
zstyle ':fzf-tab:*' fzf-bindings 'space:accept'
-
##: === CANDIDATE PREVIEWS ========================================================================
# Preview directory contents
@@ -38,7 +36,7 @@ zstyle ':fzf-tab:complete:systemctl-*:*' fzf-preview 'SYSTEMD_COLORS=1 systemctl
# Show environment variable values.
# <https://github.com/Aloxaf/fzf-tab/wiki/Preview#environment-variable>
zstyle ':fzf-tab:complete:(-command-|-parameter-|-brace-parameter-|export|unset|expand):*' \
- fzf-preview 'echo ${(P)word}'
+ fzf-preview 'echo ${(P)word}'
# Show `tldr` output.
# <https://github.com/Aloxaf/fzf-tab/wiki/Preview#tldr>
diff --git a/users/cdom/config/zsh/rc.d/70-options.zsh b/users/cdom/config/zsh/rc.d/70-options.zsh
index 44f50bc..909ed56 100644
--- a/users/cdom/config/zsh/rc.d/70-options.zsh
+++ b/users/cdom/config/zsh/rc.d/70-options.zsh
@@ -5,17 +5,16 @@
# Treat these characters as part of a word.
WORDCHARS='_*?[]~&.;!#$%^(){}<>'
-
###: INTERACTION/FEEDBACK ======================================================
-setopt COMBINING_CHARS # Combine zero-length punc chars (accents) with base char
-setopt HIST_BEEP # Beep when accessing non-existent history.
-setopt INTERACTIVE_COMMENTS # Enable comments in interactive shell.
-setopt RC_QUOTES # Allow 'Henry''s Garage' instead of 'Henry'\''s Garage'
+setopt COMBINING_CHARS # Combine zero-length punc chars (accents) with base char
+setopt HIST_BEEP # Beep when accessing non-existent history.
+setopt INTERACTIVE_COMMENTS # Enable comments in interactive shell.
+setopt RC_QUOTES # Allow 'Henry''s Garage' instead of 'Henry'\''s Garage'
-unsetopt BEEP # And I thought I *liked* beeping...
-unsetopt BRACE_CCL # Allow brace character class list expansion.
-unsetopt MAIL_WARNING # Don't print a warning message if a mail file has been accessed.
+unsetopt BEEP # And I thought I *liked* beeping...
+unsetopt BRACE_CCL # Allow brace character class list expansion.
+unsetopt MAIL_WARNING # Don't print a warning message if a mail file has been accessed.
# TODO: annotate
setopt HASH_LIST_ALL
@@ -23,16 +22,15 @@ setopt IGNOREEOF
unsetopt CORRECT_ALL
unsetopt NOMATCH
-
###: PROCESSES ===============================================================
-setopt AUTO_RESUME # Attempt to resume existing job before creating a new process.
-setopt LONG_LIST_JOBS # List jobs in the long format by default.
-setopt NOTIFY # Report status of background jobs immediately.
+setopt AUTO_RESUME # Attempt to resume existing job before creating a new process.
+setopt LONG_LIST_JOBS # List jobs in the long format by default.
+setopt NOTIFY # Report status of background jobs immediately.
-unsetopt BG_NICE # Don't run all background jobs at a lower priority.
-unsetopt CHECK_JOBS # Don't report on jobs when shell exit.
-unsetopt HUP # Don't kill jobs on shell exit.
+unsetopt BG_NICE # Don't run all background jobs at a lower priority.
+unsetopt CHECK_JOBS # Don't report on jobs when shell exit.
+unsetopt HUP # Don't kill jobs on shell exit.
##: Summarise execution time (in seconds) for long-running commands.
REPORTTIME=2 # <- Threshold defining "long-running"
diff --git a/users/cdom/config/zsh/rc.d/80-keybinds.zsh b/users/cdom/config/zsh/rc.d/80-keybinds.zsh
index 78e0ff0..78c3045 100644
--- a/users/cdom/config/zsh/rc.d/80-keybinds.zsh
+++ b/users/cdom/config/zsh/rc.d/80-keybinds.zsh
@@ -26,14 +26,12 @@
# Keys[PageDown]="${terminfo[knp]}"
# Keys[Shift-Tab]="${terminfo[kcbt]}"
-
##: --- insert mode ---
bindkey -M viins '^A' beginning-of-line
bindkey -M viins '^E' end-of-line
bindkey -M viins '^D' push-line-or-edit
-
##: --- plugins ---
# <zsh-users/zsh-history-substring-search>
Loading