diff --git a/home-manager/common/software/cli/nixvim.nix b/home-manager/common/software/cli/nixvim.nix index cb36fc75..0c4d0752 100644 --- a/home-manager/common/software/cli/nixvim.nix +++ b/home-manager/common/software/cli/nixvim.nix @@ -1,7 +1,7 @@ { inputs, pkgs, config, lib, theme, ... }: { imports = [ inputs.nixvim.homeManagerModules.nixvim - ] ++ lib.optional (builtins.isString theme) ../../../../stylix/${theme}/home-manager/nixvim.nix; + ]; # ++ lib.optional (builtins.isString theme) ../../../../stylix/${theme}/home-manager/nixvim.nix; programs.nixvim = { enable = true; @@ -17,8 +17,6 @@ # Indent wrapped text. breakindent = true; colorcolumn = "100"; - # This is the default value. `:help cot` to see the available options. - completeopt = "menu,preview"; }; plugins = { treesitter.enable = true;