mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
vim-indent-guides: init at 2016-04-17
This commit is contained in:
parent
f688ea37d8
commit
b981fe2095
|
@ -13,7 +13,8 @@ in
|
|||
|
||||
# TL;DR
|
||||
# Add your plugin to ./vim-plugin-names
|
||||
# Generate via `vim-plugin-names-to-nix`
|
||||
# Regenerate via `nix-build -Q -A vimPlugins.pluginnames2nix; ./result/bin/vim-plugin-names-to-nix`
|
||||
# Copy the generated expression(s) into this file.
|
||||
# If plugin is complicated then make changes to ./vim2nix/additional-nix-code
|
||||
|
||||
# This attrs contains two sections:
|
||||
|
@ -885,6 +886,17 @@ rec {
|
|||
|
||||
};
|
||||
|
||||
vim-indent-guides = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "vim-indent-guides-2016-04-17";
|
||||
src = fetchgit {
|
||||
url = "git://github.com/nathanaelkane/vim-indent-guides";
|
||||
rev = "018298ead9d3aa9cd3b4ae222f81022a33978b09";
|
||||
sha256 = "0zyrs9r3vza2kqhqir6qpkygy6yljpn877bvycspv89ljzczmwrs";
|
||||
};
|
||||
dependencies = [];
|
||||
|
||||
};
|
||||
|
||||
vim-stylish-haskell = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "vim-stylish-haskell-2015-05-10";
|
||||
src = fetchgit {
|
||||
|
|
|
@ -68,6 +68,7 @@
|
|||
"github:mhinz/vim-startify"
|
||||
"github:mkasa/lushtags"
|
||||
"github:mpickering/hlint-refactor-vim"
|
||||
"github:nathanaelkane/vim-indent-guides"
|
||||
"github:nbouscal/vim-stylish-haskell"
|
||||
"github:neovimhaskell/haskell-vim"
|
||||
"github:osyo-manga/shabadou.vim"
|
||||
|
|
Loading…
Reference in a new issue