diff options
| author | tv <tv@krebsco.de> | 2019-05-21 21:53:17 +0200 | 
|---|---|---|
| committer | tv <tv@krebsco.de> | 2019-05-21 22:01:28 +0200 | 
| commit | 120b610f02cb311baa59d9162e9a0a0800b19154 (patch) | |
| tree | 8ec8c2c3639fe734332f230aff85b5adba4fa7ec | |
| parent | bdd392113d9f3273c31ee5f7e59211041baab1c2 (diff) | |
tv vim: move file-line to overlay
| -rw-r--r-- | tv/2configs/vim.nix | 9 | ||||
| -rw-r--r-- | tv/5pkgs/vim/file-line.nix | 10 | 
2 files changed, 11 insertions, 8 deletions
| diff --git a/tv/2configs/vim.nix b/tv/2configs/vim.nix index 234602a..657d7a6 100644 --- a/tv/2configs/vim.nix +++ b/tv/2configs/vim.nix @@ -15,18 +15,11 @@ let {    extra-runtimepath = concatMapStringsSep "," (pkg: "${pkg.rtp}") [      pkgs.tv.vimPlugins.elixir +    pkgs.tv.vimPlugins.file-line      pkgs.tv.vimPlugins.fzf      pkgs.tv.vimPlugins.jq      pkgs.vimPlugins.fzfWrapper      pkgs.vimPlugins.undotree -    (pkgs.vimUtils.buildVimPlugin { -      name = "file-line-1.0"; -      src = pkgs.fetchgit { -        url = git://github.com/bogado/file-line; -        rev = "refs/tags/1.0"; -        sha256 = "0z47zq9rqh06ny0q8lpcdsraf3lyzn9xvb59nywnarf3nxrk6hx0"; -      }; -    })      ((rtp: rtp // { inherit rtp; }) (pkgs.writeTextFile (let        name = "hack";      in { diff --git a/tv/5pkgs/vim/file-line.nix b/tv/5pkgs/vim/file-line.nix new file mode 100644 index 0000000..2259726 --- /dev/null +++ b/tv/5pkgs/vim/file-line.nix @@ -0,0 +1,10 @@ +{ pkgs }: + +pkgs.vimUtils.buildVimPlugin { +  name = "file-line-1.0"; +  src = pkgs.fetchgit { +    url = git://github.com/bogado/file-line; +    rev = "refs/tags/1.0"; +    sha256 = "0z47zq9rqh06ny0q8lpcdsraf3lyzn9xvb59nywnarf3nxrk6hx0"; +  }; +} | 
