From 424559ba8cc03a1015c7bbe9baa459fab6694094 Mon Sep 17 00:00:00 2001 From: Mel Date: Wed, 30 Oct 2024 00:12:31 +0100 Subject: Fix vimPlugins.YouCompleteMe Go completion support (See: https://github.com/NixOS/nixpkgs/pull/352222) Signed-off-by: Mel --- modules/vim.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'modules/vim.nix') diff --git a/modules/vim.nix b/modules/vim.nix index 4fe62fe..ceceac5 100644 --- a/modules/vim.nix +++ b/modules/vim.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ pkgs, auxiliaryPkgs, ... }: let configs = [ @@ -18,13 +18,12 @@ let packages.collection = with vimPlugins; { start = [ - YouCompleteMe fzf-vim vim-easymotion vim-sleuth vim-better-whitespace vim-tmux-navigator - ]; + ] ++ (with auxiliaryPkgs; [ youcompleteme ]); opt = [ ]; }; -- cgit 1.4.1