From b94f603aa7fb84d3d469baa9a49cafb4a3c3e710 Mon Sep 17 00:00:00 2001 From: ficache Date: Mon, 11 Nov 2024 16:21:13 +0300 Subject: [PATCH] nixvim wip --- home-manager/modules/nixvim/nixvim.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/home-manager/modules/nixvim/nixvim.nix b/home-manager/modules/nixvim/nixvim.nix index f1c5311..a79328b 100644 --- a/home-manager/modules/nixvim/nixvim.nix +++ b/home-manager/modules/nixvim/nixvim.nix @@ -1,15 +1,24 @@ { programs.nixvim = { enable = true; + plugins = { web-devicons.enable = true; which-key.enable = true; gitsigns.enable = true; trouble.enable = true; }; + defaultEditor = true; # Color schemes managed by stylix! :D + opts = { + relativenumber = true; + clipboard = "unnamedplus"; + tabstop = 4; + softtabstop = 4; + showtabline = 4; + }; }; imports = [