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) ]; }; }