From b6302ae731f9d438f4e59f62d04903df79d4c942 Mon Sep 17 00:00:00 2001 From: Soispha Date: Sat, 9 Dec 2023 18:20:18 +0100 Subject: feat(treewide): Specify nvim plugins in my flake --- hm/soispha/conf/nvim/plgs/default.nix | 57 +++++++++++++++++++---------------- 1 file changed, 31 insertions(+), 26 deletions(-) (limited to 'hm/soispha/conf/nvim/plgs/default.nix') diff --git a/hm/soispha/conf/nvim/plgs/default.nix b/hm/soispha/conf/nvim/plgs/default.nix index c3c36da0..4f1f2172 100644 --- a/hm/soispha/conf/nvim/plgs/default.nix +++ b/hm/soispha/conf/nvim/plgs/default.nix @@ -1,28 +1,33 @@ {...}: { - imports = [ - ./colorscheme - ./comment-nvim - ./debugprint - ./femaco - ./flatten-nvim - ./goto-preview - ./harpoon - ./leap - ./lf-nvim - ./lsp - #./lsp-progress-nvim - ./lspkind - ./ltex_extra - ./lualine - ./luasnip - ./neorg - ./nvim-cmp - ./nvim-lint - ./raw_plugins - ./telescope - ./todo-comments - ./treesitter - ./vim-tex - ./which-key - ]; + imports = + [ + # Plugins not yet packaged in nixpkgs + ./debugprint + ./lf-nvim + # ./lsp-progress-nvim + ] + ++ [ + # Already packaged in nixpkgs + ./colorscheme + ./comment-nvim + ./femaco + ./flatten-nvim + ./goto-preview + ./harpoon + ./leap + ./lsp + ./lspkind + ./ltex_extra + ./lualine + ./luasnip + ./neorg + ./nvim-cmp + ./nvim-lint + ./raw_plugins + ./telescope + ./todo-comments + ./treesitter + ./vim-tex + ./which-key + ]; } -- cgit 1.4.1