From d4bb23f6cea6712e324e07920115396429920cd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Fri, 25 Jul 2025 15:55:57 +0200 Subject: [PATCH] chore!: remove avante --- .../moritz/programs/nvim/plugins/avante.nix | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100644 modules/moritz/programs/nvim/plugins/avante.nix diff --git a/modules/moritz/programs/nvim/plugins/avante.nix b/modules/moritz/programs/nvim/plugins/avante.nix deleted file mode 100644 index a0fde07..0000000 --- a/modules/moritz/programs/nvim/plugins/avante.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ - config, - lib, - ... -}: let - inherit (lib) mkIf; - - cfg = config.my.ai; -in { - config = mkIf cfg.enable { - home-manager.users.moritz.programs.nixvim.plugins = { - render-markdown = { - enable = true; - settings.file_types = ["markdown" "Avante"]; - }; - nui.enable = true; - dressing.enable = true; - avante = { - enable = true; - settings = { - provider = "openai"; - openai = { - api_key_name = "cmd:cat ${config.clan.core.vars.generators.moritz-openai.files.api-key.path}"; - }; - }; - lazyLoad.settings.event = ["DeferredUIEnter"]; - }; - }; - }; -}