vimPlugins.minimap-vim: init at 2021-01-04 (#111150)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
80c5399530
commit
61fef16594
@ -2302,6 +2302,18 @@ let
|
|||||||
meta.homepage = "https://github.com/vim-scripts/mayansmoke/";
|
meta.homepage = "https://github.com/vim-scripts/mayansmoke/";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
minimap-vim = buildVimPluginFrom2Nix {
|
||||||
|
pname = "minimap-vim";
|
||||||
|
version = "2021-01-04";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "wfxr";
|
||||||
|
repo = "minimap.vim";
|
||||||
|
rev = "3e9ba8aae59441ed82b50b186f608e03aecb4f0e";
|
||||||
|
sha256 = "1z264hr0vbsdc0ffaiflzq952xv4h1g55i08dnlifvpizhqbalv6";
|
||||||
|
};
|
||||||
|
meta.homepage = "https://github.com/wfxr/minimap.vim/";
|
||||||
|
};
|
||||||
|
|
||||||
mkdx = buildVimPluginFrom2Nix {
|
mkdx = buildVimPluginFrom2Nix {
|
||||||
pname = "mkdx";
|
pname = "mkdx";
|
||||||
version = "2021-01-28";
|
version = "2021-01-28";
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
, nodePackages
|
, nodePackages
|
||||||
, dasht
|
, dasht
|
||||||
, sqlite
|
, sqlite
|
||||||
|
, code-minimap
|
||||||
|
|
||||||
# deoplete-khard dependency
|
# deoplete-khard dependency
|
||||||
, khard
|
, khard
|
||||||
@ -243,6 +244,15 @@ self: super: {
|
|||||||
dependencies = with super; [ webapi-vim ];
|
dependencies = with super; [ webapi-vim ];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
minimap-vim = super.minimap-vim.overrideAttrs(old: {
|
||||||
|
preFixup = ''
|
||||||
|
substituteInPlace $out/share/vim-plugins/minimap-vim/plugin/minimap.vim \
|
||||||
|
--replace "code-minimap" "${code-minimap}/bin/code-minimap"
|
||||||
|
substituteInPlace $out/share/vim-plugins/minimap-vim/bin/minimap_generator.sh \
|
||||||
|
--replace "code-minimap" "${code-minimap}/bin/code-minimap"
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
|
||||||
meson = buildVimPluginFrom2Nix {
|
meson = buildVimPluginFrom2Nix {
|
||||||
inherit (meson) pname version src;
|
inherit (meson) pname version src;
|
||||||
preInstall = "cd data/syntax-highlighting/vim";
|
preInstall = "cd data/syntax-highlighting/vim";
|
||||||
|
@ -677,6 +677,7 @@ wbthomason/packer.nvim
|
|||||||
weirongxu/coc-explorer
|
weirongxu/coc-explorer
|
||||||
wellle/targets.vim
|
wellle/targets.vim
|
||||||
wellle/tmux-complete.vim
|
wellle/tmux-complete.vim
|
||||||
|
wfxr/minimap.vim
|
||||||
whonore/Coqtail
|
whonore/Coqtail
|
||||||
will133/vim-dirdiff
|
will133/vim-dirdiff
|
||||||
wincent/command-t
|
wincent/command-t
|
||||||
|
Loading…
x
Reference in New Issue
Block a user