Add dhall syntax coloring
This commit is contained in:
parent
4cd5b7e271
commit
d6330a769b
1 changed files with 11 additions and 0 deletions
|
@ -10,6 +10,16 @@ with pkgs;
|
|||
|
||||
let
|
||||
plugins = let inherit (vimUtils) buildVimPluginFrom2Nix; in {
|
||||
"vim-dhall" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "vim-dhall";
|
||||
src = fetchFromGitHub {
|
||||
owner = "vmchale";
|
||||
repo = "dhall-vim";
|
||||
rev = "ef31cfee6d8c555d44d282e4cec1367512ad7fe9";
|
||||
sha256 = "0r7y614xld5spgpa4c8ms4rm1p8xzsayp91j4jiqhxn6ly6igv7f";
|
||||
};
|
||||
dependencies = [];
|
||||
};
|
||||
"vim-terraform" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||
name = "vim-terraform";
|
||||
src = fetchFromGitHub {
|
||||
|
@ -84,6 +94,7 @@ let
|
|||
systemd-syntax
|
||||
vim-airline
|
||||
vim-airline-themes
|
||||
vim-dhall
|
||||
vim-gnupg
|
||||
vim-nix
|
||||
vim-orgmode
|
||||
|
|
Loading…
Reference in a new issue