diff options
author | Soispha <soispha@vhack.eu> | 2023-08-29 16:32:39 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-29 16:32:39 +0200 |
commit | 2d5401967683d120cb7cd441859ca26d3945a4c2 (patch) | |
tree | cc2c37d42c874cefa4f4ae7432c7df5de363aba6 | |
parent | Fix(hm/conf/lf/colors): Remove bg color from exec file (diff) | |
download | nixos-config-2d5401967683d120cb7cd441859ca26d3945a4c2.tar.gz nixos-config-2d5401967683d120cb7cd441859ca26d3945a4c2.zip |
Fix(hm/conf/nvim/options): Set `textwidth` to 90, as 120 is just too much
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/conf/nvim/options/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hm/soispha/conf/nvim/options/default.nix b/hm/soispha/conf/nvim/options/default.nix index 879a5cd1..67b86dfc 100644 --- a/hm/soispha/conf/nvim/options/default.nix +++ b/hm/soispha/conf/nvim/options/default.nix @@ -84,7 +84,7 @@ virtualedit = "block"; # allow the cursor to move beyond actual character in visual block mode - textwidth = 120; # automatically hard wrap at 120 columns by default + textwidth = 90; # automatically hard wrap at 90 columns by default foldmethod = "marker"; # use markers to specify folds |