feat: add vim-beancount

This commit is contained in:
Moritz Böhme 2025-02-23 18:26:10 +01:00
parent 1a4b7eead3
commit d1f8765dff
Signed by: moritz
GPG key ID: 970C6E89EB0547A9

View file

@ -0,0 +1,10 @@
{ pkgs, ... }:
{
home-manager.users.moritz.programs.nixvim = {
extraPlugins = with pkgs.vimPlugins; [ vim-beancount ];
performance.combinePlugins.standalonePlugins = [
"vim-beancount"
];
};
}