From 2122a01f99c6da466b8f0f55c965c11a9043d117 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sat, 9 Nov 2024 12:35:44 +0100 Subject: refactor(modules/legacy/conf/nvim): Move to `by-name` --- modules/by-name/nv/nvim/plgs/raw_plugins/default.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 modules/by-name/nv/nvim/plgs/raw_plugins/default.nix (limited to 'modules/by-name/nv/nvim/plgs/raw_plugins') diff --git a/modules/by-name/nv/nvim/plgs/raw_plugins/default.nix b/modules/by-name/nv/nvim/plgs/raw_plugins/default.nix new file mode 100644 index 00000000..e5d401a0 --- /dev/null +++ b/modules/by-name/nv/nvim/plgs/raw_plugins/default.nix @@ -0,0 +1,17 @@ +{ + config, + lib, + ... +}: let + cfg = config.soispha.programs.nvim; +in { + home-manager.users.soispha.programs.nixvim = lib.mkIf cfg.enable { + # Not all plugins have own modules + # You can add missing plugins here + # `pkgs.vimExtraPlugins` is added by the overlay you added at the beginning + # For a list of available plugins, look here: + # https://github.com/jooooscha/nixpkgs-vim-extra-plugins/blob/main/plugins.md + extraPlugins = [ + ]; + }; +} -- cgit 1.4.1