diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-11-24 17:58:06 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-11-24 18:24:58 +0100 |
commit | 856516b33d53c23cf18b1acf66b78b94f042d295 (patch) | |
tree | c4bd32b322d49d45b5ed282607cca3f11bcd00a1 | |
parent | feat(modules/lf/ctpv): Correct configure (diff) | |
download | nixos-config-856516b33d53c23cf18b1acf66b78b94f042d295.tar.gz nixos-config-856516b33d53c23cf18b1acf66b78b94f042d295.zip |
fix(modules/nvim/opts): Ensure a consistent fileformat
Thus, all dos files will magically change to Linux ones.
Diffstat (limited to '')
-rw-r--r-- | modules/by-name/nv/nvim/options/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/by-name/nv/nvim/options/default.nix b/modules/by-name/nv/nvim/options/default.nix index e149553f..be475b13 100644 --- a/modules/by-name/nv/nvim/options/default.nix +++ b/modules/by-name/nv/nvim/options/default.nix @@ -62,6 +62,8 @@ in { mouse = ""; # disables the mouse + fileformat = "unix"; # Always use the unix line-endings + number = true; # line numbers relativenumber = true; # relative line numbers |