From 1b31332c12dcd352893f1d911d8ba40662e027ef Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Fri, 4 Jul 2025 16:27:14 +0000 Subject: [PATCH] feat: fzf, tmux plugins, neovim config cleanup :art: --- nixos/configuration.nix | 1 + nixos/neovim.nix | 1 - nixos/tmux.nix | 3 +++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index aecc821..effed48 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -81,6 +81,7 @@ neofetch # system info btop # resource monitor tldr # community alternative to man + fzf # fuzzy finder # gimp # bloat # blender # bloat diff --git a/nixos/neovim.nix b/nixos/neovim.nix index 60cb050..59f5f17 100644 --- a/nixos/neovim.nix +++ b/nixos/neovim.nix @@ -4,7 +4,6 @@ programs.neovim = { enable = true; defaultEditor = true; - # package = pkgs.neovim; configure = { customRC = '' set title diff --git a/nixos/tmux.nix b/nixos/tmux.nix index 4684c2a..c09e84b 100644 --- a/nixos/tmux.nix +++ b/nixos/tmux.nix @@ -48,7 +48,10 @@ # setenv -g SSH_AUTH_SOCK $HOME/.ssh/ssh_auth_sock ''; plugins = [ + # pkgs.tmuxPlugins.tmux-powerline # status bar pkgs.tmuxPlugins.catppuccin + pkgs.tmuxPlugins.tmux-fzf # search tmux commands (prefix + F) + pkgs.tmuxPlugins.extrakto # fuzzyfind text history (prefix + tab) ]; }; }