From 7f34bb6dc7b33be8c809a1c72b683c2032401cc4 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Thu, 7 Nov 2024 15:17:06 -0600 Subject: [PATCH] feat(nvim): enable `showbreak` --- users/price/dots/.config/nvim/lua/core/options.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/users/price/dots/.config/nvim/lua/core/options.lua b/users/price/dots/.config/nvim/lua/core/options.lua index 1e1740d4..14e7bbfe 100755 --- a/users/price/dots/.config/nvim/lua/core/options.lua +++ b/users/price/dots/.config/nvim/lua/core/options.lua @@ -42,7 +42,8 @@ M.setup = function() opt.formatlistpat = [[^\s*\(-\|\d\.\|+\)\s*]] opt.formatoptions = "jcroqnp" opt.breakindent = true - opt.breakindentopt = "list:2" + opt.breakindentopt = "sbr,list:2" + opt.showbreak = " " -- Search settings opt.hlsearch = true