about summary refs log tree commit diff stats
path: root/home-manager/soispha/config/neovim/nixvim/plugins/raw_plugins
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-25 22:34:40 +0200
committerSoispha <soispha@vhack.eu>2023-08-25 22:34:40 +0200
commit1293b751db6333e368f30652328aeec43b06be12 (patch)
tree60ebb9361abda3cb435040b3a7f995fcdc405159 /home-manager/soispha/config/neovim/nixvim/plugins/raw_plugins
parentFix(hm/conf/neovim/plugins/harpoon/mappings): Simplify mappings (diff)
downloadnixos-config-1293b751db6333e368f30652328aeec43b06be12.zip
Fix(hm/conf/neovim/plugins): Move raw plugins to their config dirs
Diffstat (limited to 'home-manager/soispha/config/neovim/nixvim/plugins/raw_plugins')
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/raw_plugins/default.nix13
1 files changed, 4 insertions, 9 deletions
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/raw_plugins/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/raw_plugins/default.nix
index 28944ff9..941cb7cb 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/raw_plugins/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/raw_plugins/default.nix
@@ -1,16 +1,11 @@
-{pkgs, ...}: {
+{...}: {
   programs.nixvim = {
     # 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: [available plugins](https://github.com/jooooscha/nixpkgs-vim-extra-plugins/blob/main/plugins.md)
-    extraPlugins = with pkgs.vimExtraPlugins; [
-      nightfox-nvim
-      nvim-lint
-      lf-nvim
-      gruvbox
-
-      nvim-toggleterm-lua # required by lf-nvim
+    # For a list of available plugins, look here:
+    # https://github.com/jooooscha/nixpkgs-vim-extra-plugins/blob/main/plugins.md
+    extraPlugins = [
     ];
   };
 }