From e885d4ea6665d95630149587319fd24652492709 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sun, 28 Sep 2025 12:18:49 +0200 Subject: [PATCH] nvim: prefer unix line endings --- nvim/lua/user/options.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nvim/lua/user/options.lua b/nvim/lua/user/options.lua index dcd7857..a2009fc 100644 --- a/nvim/lua/user/options.lua +++ b/nvim/lua/user/options.lua @@ -37,6 +37,8 @@ vim.o.shortmess = "atIF" -- Editor ------------------------------------------------------- +vim.o.fileformats = "unix,dos" + vim.o.wrap = false -- Disable line wrap vim.o.cursorline = true vim.o.scrolloff = 10