diff options
author | Adrian Kummerlaender | 2019-02-19 20:01:30 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2019-02-19 20:01:30 +0100 |
commit | 74ed6df47cc880f0c77cb32ebe0b80211287b331 (patch) | |
tree | 721b09a15464220e55b6acf570fca70fb7bc869c | |
parent | 3a34cbf675fe47f8a69976cfbee54d2173bc020a (diff) | |
download | pkgs-74ed6df47cc880f0c77cb32ebe0b80211287b331.tar pkgs-74ed6df47cc880f0c77cb32ebe0b80211287b331.tar.gz pkgs-74ed6df47cc880f0c77cb32ebe0b80211287b331.tar.bz2 pkgs-74ed6df47cc880f0c77cb32ebe0b80211287b331.tar.lz pkgs-74ed6df47cc880f0c77cb32ebe0b80211287b331.tar.xz pkgs-74ed6df47cc880f0c77cb32ebe0b80211287b331.tar.zst pkgs-74ed6df47cc880f0c77cb32ebe0b80211287b331.zip |
Replace vim-surround with vim-sandwich
-rw-r--r-- | pkgs/custom-vim/custom.nix | 2 | ||||
-rw-r--r-- | pkgs/custom-vim/plugins.nix | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/pkgs/custom-vim/custom.nix b/pkgs/custom-vim/custom.nix index 4719b72..4c0c72c 100644 --- a/pkgs/custom-vim/custom.nix +++ b/pkgs/custom-vim/custom.nix @@ -28,7 +28,7 @@ in # editing enhancements "vim-wordmotion" "vim-autoformat" - "surround" + "vim-sandwich" "vim-unimpaired" "vim-far" # git integration diff --git a/pkgs/custom-vim/plugins.nix b/pkgs/custom-vim/plugins.nix index 608fcac..fb22acb 100644 --- a/pkgs/custom-vim/plugins.nix +++ b/pkgs/custom-vim/plugins.nix @@ -67,6 +67,15 @@ in { }; }; + "vim-sandwich" = buildVimPlugin { + name = "vim-sandwich"; + src = fetchgit { + url = "https://github.com/machakann/vim-sandwich.git"; + rev = "d441cf5a450f65dbf95eca3fa1138806884a7d58"; + sha256 = "1qkadkisfw21834848rphliry5h6h9mj010n2p3y27wp6xkq9phj"; + }; + }; + "vim-color-akr" = buildVimPlugin { name = "vim-color-akr"; src = ./asset/vim-color-akr; |