Update options.nix

tab = 4!!!!
This commit is contained in:
kozlekkinski 2025-08-16 18:34:14 +02:00 committed by GitHub
commit 477f680f16
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -239,7 +239,7 @@ in {
tabstop = mkOption {
type = int;
default = 8; # Neovim default
default = 4; # Neovim default
description = ''
Number of spaces that a `<Tab>` 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.