Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9b985dfb2fdc
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5c544b8c782c
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Sep 14, 2017

  1. Copy the full SHA
    e477fa9 View commit details
  2. Copy the full SHA
    5c544b8 View commit details
Showing with 24 additions and 0 deletions.
  1. +22 −0 pkgs/misc/vim-plugins/default.nix
  2. +2 −0 pkgs/misc/vim-plugins/vim-plugin-names
22 changes: 22 additions & 0 deletions pkgs/misc/vim-plugins/default.nix
Original file line number Diff line number Diff line change
@@ -1363,6 +1363,17 @@ rec {

};

nvim-completion-manager = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "nvim-completion-manager-2017-09-05";
src = fetchgit {
url = "https://github.com/roxma/nvim-completion-manager";
rev = "d9db97f7e5a4ab8af905bc00a4501d770368dee4";
sha256 = "1aaclyz1ss2iv0lwcxkz8x5x4wivsixmlk5xakwy989q9g9ps2f1";
};
dependencies = [];

};

rust-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "rust-vim-2017-07-14";
src = fetchgit {
@@ -1374,6 +1385,17 @@ rec {

};

vim-devicons = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-devicons-2017-05-29";
src = fetchgit {
url = "https://github.com/ryanoasis/vim-devicons";
rev = "153266275acc4f4615407a18e90f58780ebaef92";
sha256 = "1zjrra0q5c7lmgxzlz7ddd7vi6k2vhz69fdy2s7d873nnmmd7kgn";
};
dependencies = [];

};

neoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "neoformat-2017-07-22";
src = fetchgit {
2 changes: 2 additions & 0 deletions pkgs/misc/vim-plugins/vim-plugin-names
Original file line number Diff line number Diff line change
@@ -108,6 +108,8 @@
"github:raichoo/purescript-vim"
"github:rhysd/vim-grammarous"
"github:rodjek/vim-puppet"
"github:roxma/nvim-completion-manager"
"github:ryanoasis/vim-devicons"
"github:rust-lang/rust.vim"
"github:sbdchd/neoformat"
"github:sebastianmarkow/deoplete-rust"