mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 03:04:06 +00:00
* feat: switch to biome, apply formatting, shellcheck * chore: apply cr comments * chore: few config tweaks, shellcheck hook now py-based * chore: lint fixes and pr comments * chore(lint): megalinter, and other fixes Signed-off-by: Ismo Vuorinen <ismo@ivuorinen.net>
15 lines
347 B
Bash
Executable File
15 lines
347 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
# shellcheck disable=SC1071
|
|
# Setup fzf
|
|
# ---------
|
|
|
|
# Auto-completion
|
|
# ---------------
|
|
# shellcheck source=completion.zsh
|
|
[[ $- == *i* ]] && source "$HOME/.dotfiles/config/fzf/completion.zsh" 2> /dev/null
|
|
|
|
# Key bindings
|
|
# ------------
|
|
# shellcheck source=key-bindings.zsh
|
|
source "$HOME/.dotfiles/config/fzf/key-bindings.zsh"
|