From bf9a675819f21f86716486dc23752ba1f57c0454 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 12 Jun 2024 12:33:41 -0500 Subject: [PATCH] feat(nvim): use breakindent shift for lists --- 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 23151d8e..2448b550 100755 --- a/users/price/dots/.config/nvim/lua/core/options.lua +++ b/users/price/dots/.config/nvim/lua/core/options.lua @@ -32,8 +32,9 @@ M.setup = function() opt.shiftwidth = 4 opt.smartindent = true opt.breakat = " \t;," + opt.formatlistpat = [[^\s*\(-\|\d\.\)\s*]] opt.breakindent = true - opt.breakindentopt = "" + opt.breakindentopt = "list:2" opt.expandtab = true opt.smarttab = true opt.shiftround = true