diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-04-05 00:34:31 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-04-05 00:34:31 +0200 |
commit | bac9dc242dbf0bd3ceb6feadf3dd1a8081dd958d (patch) | |
tree | 503aabe69410208d193da4254e4d17d9b8ed7837 /hosts | |
parent | Dotfiles: Nvim: Add todo (diff) | |
download | nixos-config-bac9dc242dbf0bd3ceb6feadf3dd1a8081dd958d.tar.gz nixos-config-bac9dc242dbf0bd3ceb6feadf3dd1a8081dd958d.tar.bz2 nixos-config-bac9dc242dbf0bd3ceb6feadf3dd1a8081dd958d.zip |
Hosts: Home: Add zsh vi mode plugin
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/home.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/hosts/home.nix b/hosts/home.nix index ef130ad..9b80ebe 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -266,7 +266,15 @@ plugins = [ { - # will source zsh-autosuggestions.plugin.zsh + name = "zsh-vi-mode"; + src = pkgs.fetchFromGitHub { + owner = "jeffreytse"; + repo = "zsh-vi-mode"; + rev = "v0.11.0"; + sha256 = "sha256-xbchXJTFWeABTwq6h4KWLh+EvydDrDzcY9AQVK65RS8="; + }; + } + { name = "zsh-autosuggestions"; src = pkgs.fetchFromGitHub { owner = "zsh-users"; |