From 4b26ea31ab226f9f3bdfdc32cb13f9576dc8e203 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Wed, 30 Apr 2025 20:51:11 +0200 Subject: [PATCH] fix: remove showbreak icon --- lua/ow/core/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/ow/core/options.lua b/lua/ow/core/options.lua index 56020fd..5965ebf 100644 --- a/lua/ow/core/options.lua +++ b/lua/ow/core/options.lua @@ -38,7 +38,7 @@ vim.opt.matchpairs:append({ "<:>", }) -- Only relevant with wrap enabled (default) vim.opt.linebreak = true vim.opt.breakindent = true -vim.opt.showbreak = "↪" +vim.opt.showbreak = " " -- Minimum amount of lines to show offset +/- to cursorline vim.opt.scrolloff = 3 vim.opt.visualbell = true