Skip to content

Instantly share code, notes, and snippets.

@infinisil
Created July 9, 2018 13:45
Show Gist options
  • Save infinisil/d1902783995ef65a42d13b54588d60c5 to your computer and use it in GitHub Desktop.
Save infinisil/d1902783995ef65a42d13b54588d60c5 to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
let
redprlplugin = vimUtils.buildVimPlugin {
name = "redprl";
src = fetchFromGitHub {
owner = "RedPRL";
repo = "sml-redprl";
rev = "03bb5b0b155c264b6cf1776d677082cddb1f9f29";
sha256 = "17xi8igp9w2hvhfcfpwb3c1qqixzsady5mmzkhs6ggx90j4q8azr";
};
sourceRoot = "source/vim";
};
in vim_configurable.customize {
name = "myvim";
vimrcConfig.packages.redprl = {
start = [ redprlplugin ];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment