we got the fuzzy

This commit is contained in:
alisceon 2025-09-04 15:13:04 +02:00
parent ea7b587b2b
commit a60f7776da

View file

@ -82,6 +82,7 @@
pciutils pciutils
usbutils usbutils
tree tree
fzf #fuzzy finder
# Shells # Shells
bash bash
@ -122,6 +123,7 @@
programs = { programs = {
command-not-found.enable = true; command-not-found.enable = true;
fzf.fuzzyCompletion = true;
xonsh = { xonsh = {
enable = true; enable = true;
extraPackages = ps: with ps; [ extraPackages = ps: with ps; [
@ -160,16 +162,16 @@
xontrib load coreutils xontrib load coreutils
xontrib load fish_completer xontrib load fish_completer
xontrib load direnv xontrib load direnv
xontrib load fzf-completions
xontrib load clp xontrib load clp
xontrib load bashisms xontrib load bashisms
#xontrib load abbrevs #relies on xonsh.ptk_shell which was deprecated in 0.13 #xontrib load abbrevs #relies on xonsh.ptk_shell which was deprecated in 0.13
#from xonsh.built_ins import XSH
#XSH.env['fzf_history_binding'] = "c-r" # Ctrl+R xontrib load fzf-completions
#XSH.env['fzf_ssh_binding'] = "c-s" # Ctrl+S from xonsh.built_ins import XSH
#XSH.env['fzf_file_binding'] = "c-t" # Ctrl+T XSH.env['fzf_history_binding'] = "c-r" # Ctrl+R
#XSH.env['fzf_dir_binding'] = "c-g" # Ctrl+G XSH.env['fzf_ssh_binding'] = "c-s" # Ctrl+S
XSH.env['fzf_file_binding'] = "c-t" # Ctrl+T
XSH.env['fzf_dir_binding'] = "c-g" # Ctrl+G
aliases["tsla-fan"] = "ipmitool -H 10.30.0.3 -U ADMIN -P ADMIN raw 0x30 0x70 0x66 0x01 0x0" aliases["tsla-fan"] = "ipmitool -H 10.30.0.3 -U ADMIN -P ADMIN raw 0x30 0x70 0x66 0x01 0x0"
aliases["nixoss"] = "sudo nixos-rebuild switch --flake .#${config.networking.hostName}" aliases["nixoss"] = "sudo nixos-rebuild switch --flake .#${config.networking.hostName}"