Compare commits

...

2 commits

Author SHA1 Message Date
Harald Hoyer 2d4b3334c5 fix: disable neovim lsplines 2024-01-12 16:18:26 +01:00
Harald Hoyer a8bd8b70a0 fix: disable git sign by default 2024-01-12 16:18:08 +01:00
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ in
nvimCodeActionMenu.enable = true;
trouble.enable = true;
lspSignature.enable = true;
lsplines.enable = true;
lsplines.enable = false;
};
vim.debugger = {

View file

@ -14,7 +14,7 @@ in
userEmail = mkOpt types.str user.email "The email to configure git with.";
signingKey =
mkOpt types.str "7F3D64824AC0B6B8009E50504BC0896FB5693595" "The key ID to sign commits with.";
signByDefault = mkOpt types.bool true "Whether to sign commits by default.";
signByDefault = mkOpt types.bool false "Whether to sign commits by default.";
};
config = mkIf cfg.enable {