From 276bc305cf40f136ce878f81e29d784ac4fadd23 Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Thu, 13 Feb 2025 16:20:19 +0100 Subject: [PATCH] editors/neovim: add smart columns --- modules/programs/editors/neovim/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/programs/editors/neovim/default.nix b/modules/programs/editors/neovim/default.nix index e74487d..e3b68b2 100644 --- a/modules/programs/editors/neovim/default.nix +++ b/modules/programs/editors/neovim/default.nix @@ -53,6 +53,14 @@ ui = { noice.enable = true; + smartcolumn = { + enable = true; + setupOpts = { + custom_colorcolumn = { + nix = "110"; + }; + }; + }; }; notify.nvim-notify.enable = true;