From 9ca526ccab5a6fa0966bd54f0be806417f913e68 Mon Sep 17 00:00:00 2001 From: iFargle Date: Thu, 8 Feb 2024 14:26:53 +0900 Subject: [PATCH] test --- home-manager/common/software/cli/nixvim.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/home-manager/common/software/cli/nixvim.nix b/home-manager/common/software/cli/nixvim.nix index ed3fc03a..946e403a 100644 --- a/home-manager/common/software/cli/nixvim.nix +++ b/home-manager/common/software/cli/nixvim.nix @@ -1,5 +1,4 @@ -{ inputs, pkgs, config, lib, ... }: - let pkgs = "inputs.nixpkgs-unstable"; in { +{ inputs, pkgs, config, lib, ... }: { imports = [ inputs.nixvim.homeManagerModules.nixvim ]; @@ -15,6 +14,12 @@ options = { number = true; shiftwidth = 2; + # Indent wrapped text. + breakindent = true; + colorcolumn = "100"; + # This is the default value. `:help cot` to see the available options. + completeopt = "menu,preview"; + cursorline = true; }; plugins = { treesitter.enable = true;