1
0
mirror of https://github.com/kmein/niveum synced 2026-03-18 19:11:08 +01:00

feat(vim): add reason support

This commit is contained in:
Kierán Meinhardt
2020-03-01 12:54:53 +01:00
parent bc85925037
commit 457b995f1c
3 changed files with 27 additions and 28 deletions

View File

@@ -0,0 +1,10 @@
{ vimUtils, fetchFromGitHub }:
(vimUtils.buildVimPluginFrom2Nix {
name = "vim-reason-plus";
src = fetchFromGitHub {
owner = "reasonml-editor";
repo = "vim-reason-plus";
rev = "c11a2940f8f3e3915e472c366fe460b0fe008bac";
sha256 = "1vx7cwxzj6f12qcwcwa040adqk9cyzjd9f3ix26hnw2dw6r9cdr4";
};
})