From 0d8d28d8b7ea358b31b01763d508b2b29bdfb188 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Tue, 11 Jun 2024 22:16:41 -0500 Subject: [PATCH] feat(nvim): explicitly set `vim.opt.breakat` --- users/price/dots/.config/nvim/lua/core/options.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/users/price/dots/.config/nvim/lua/core/options.lua b/users/price/dots/.config/nvim/lua/core/options.lua index 42254cd2..23151d8e 100755 --- a/users/price/dots/.config/nvim/lua/core/options.lua +++ b/users/price/dots/.config/nvim/lua/core/options.lua @@ -31,6 +31,7 @@ M.setup = function() opt.tabstop = 4 opt.shiftwidth = 4 opt.smartindent = true + opt.breakat = " \t;," opt.breakindent = true opt.breakindentopt = "" opt.expandtab = true