Add vim-typoscript plugin

This commit is contained in:
Jakob Lechner 2024-08-20 15:23:11 +02:00
parent 28b6f5acf3
commit a3fdb19b10
3 changed files with 15 additions and 0 deletions

View file

@ -31,5 +31,6 @@ in
};
vimPlugins = prev.vimPlugins // {
vim-fluid = callPackage ./vim-fluid { inherit (prev.vimUtils) buildVimPlugin; };
vim-typoscript = callPackage ./vim-typoscript { inherit (prev.vimUtils) buildVimPlugin; };
};
}

View file

@ -0,0 +1,13 @@
{ buildVimPlugin, fetchFromGitHub }:
buildVimPlugin rec {
pname = "vim-typoscript";
version = "2.0.0";
src = fetchFromGitHub {
owner = "DanielSiepmann";
repo = "mirror-vim.typoscript";
rev = "v${version}";
sha256 = "sha256-fCB+ikDmkfEP/W0pFYGrsZiH30vT0g3z6GZpRGk0Rhc=";
};
meta.homepage = "https://git.daniel-siepmann.de/danielsiepmann/vim-syntax-typoscript";
}

View file

@ -112,6 +112,7 @@ in
vim-nix
vim-puppet
vim-terraform
vim-typoscript
(
lib.mkIf nixosConfig.jalr.workstation.enable {
plugin = lsp_signature-nvim;