diff options
author | Soispha <soispha@vhack.eu> | 2023-12-10 20:49:58 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-12-10 20:49:58 +0100 |
commit | 78d136c4b533a21a343555bb3a5f653e39e14574 (patch) | |
tree | 761c3faeb224bb4f1afc0a9347e4597bd1614726 /hm/soispha | |
parent | chore(version): v1.17.0 (diff) | |
download | nixos-config-78d136c4b533a21a343555bb3a5f653e39e14574.zip |
fix(hm/conf/nvim/plgs/harpoon): Use version locked to the old branch
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/conf/nvim/plgs/harpoon/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hm/soispha/conf/nvim/plgs/harpoon/default.nix b/hm/soispha/conf/nvim/plgs/harpoon/default.nix index afbeb727..b1421dab 100644 --- a/hm/soispha/conf/nvim/plgs/harpoon/default.nix +++ b/hm/soispha/conf/nvim/plgs/harpoon/default.nix @@ -1,4 +1,4 @@ -{...}: let +{pkgs, ...}: let numbers = ["0" "1" "2" "3" "4" "5" "6" "7" "8" "9"]; mkNumberedCommand = { command_template, @@ -34,6 +34,7 @@ in { programs.nixvim = { plugins.harpoon = { enable = true; + package = pkgs.vimExtraPlugins.harpoon; enableTelescope = true; # menu.width = "vim.api.nvim_win_get_width(0) - 4"; # TODO: integrate that keymaps = { |