From 6c0e6edad58adebf0279bc1c87c32da782b48a4f Mon Sep 17 00:00:00 2001 From: iFargle Date: Thu, 8 Feb 2024 20:44:15 +0900 Subject: [PATCH] test --- home-manager/common/software/cli/nixvim.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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;