From 2ecc6e684a5c45b3808c49f9c667f4e882ffbe41 Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Sun, 7 Jan 2024 15:31:34 +0100 Subject: [PATCH] Neovim: Disable empty line squiggles remove the "~" character which signals an empty line --- home/features/coding/nvim/options.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/features/coding/nvim/options.lua b/home/features/coding/nvim/options.lua index 0978ef0..6ebf485 100644 --- a/home/features/coding/nvim/options.lua +++ b/home/features/coding/nvim/options.lua @@ -16,3 +16,6 @@ vim.o.updatetime = 300 vim.o.termguicolors = true vim.o.mouse = "a" + +-- disable empty line ~ +vim.o.fillchars = "eob: "