From 477f680f16611fa45ad0b0768cdf22061f493049 Mon Sep 17 00:00:00 2001 From: kozlekkinski <145259166+kozlekkinski@users.noreply.github.com> Date: Sat, 16 Aug 2025 18:34:14 +0200 Subject: [PATCH] Update options.nix tab = 4!!!! --- modules/wrapper/rc/options.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/wrapper/rc/options.nix b/modules/wrapper/rc/options.nix index c0bb6915..8ddc34bf 100644 --- a/modules/wrapper/rc/options.nix +++ b/modules/wrapper/rc/options.nix @@ -239,7 +239,7 @@ in { tabstop = mkOption { type = int; - default = 8; # Neovim default + default = 4; # Neovim default description = '' Number of spaces that a `` in the file counts for. Also see the {command}`:retab` command, and the {option}`softtabstop` option. @@ -248,7 +248,7 @@ in { shiftwidth = mkOption { type = int; - default = 8; # Neovim default + default = 4; # Neovim default description = '' Number of spaces to use for each step of (auto)indent. Used for {option}`cindent`, `>>`, `<<`, etc.