From 0ef051ed34ae54d62ea4a573bc4396127fd0b87e Mon Sep 17 00:00:00 2001 From: Michael Thomson Date: Tue, 27 Feb 2024 14:06:47 -0500 Subject: [PATCH] tmux navigator and nodejs --- hosts/macbook/home.nix | 2 ++ modules/home-manager/tmux/default.nix | 3 +++ 2 files changed, 5 insertions(+) diff --git a/hosts/macbook/home.nix b/hosts/macbook/home.nix index f9d0069..f5ee1c1 100644 --- a/hosts/macbook/home.nix +++ b/hosts/macbook/home.nix @@ -16,6 +16,8 @@ spotify-player tmuxifier neofetch + nodejs + corepack-nodejs ]; programs.home-manager.enable = true; diff --git a/modules/home-manager/tmux/default.nix b/modules/home-manager/tmux/default.nix index 25f4190..8edf8d0 100644 --- a/modules/home-manager/tmux/default.nix +++ b/modules/home-manager/tmux/default.nix @@ -8,6 +8,9 @@ mouse = true; baseIndex = 1; tmuxp.enable = true; + plugins = with pkgs; [ + tmuxPlugins.vim-tmux-navigator + ]; }; }; }