From 0f07552648ac5b4a5e39b0281aac9a37414bcead Mon Sep 17 00:00:00 2001 From: afoucaultc Date: Tue, 7 Jul 2026 14:15:11 +0200 Subject: [PATCH] neovim stuff --- dotfiles/nvim/lua/neoconf/settings.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dotfiles/nvim/lua/neoconf/settings.lua b/dotfiles/nvim/lua/neoconf/settings.lua index cbe0035..e9578b0 100644 --- a/dotfiles/nvim/lua/neoconf/settings.lua +++ b/dotfiles/nvim/lua/neoconf/settings.lua @@ -41,3 +41,6 @@ vim.o.confirm = true -- spell checking vim.opt.spell = true vim.opt.spelllang = "fr" +-- wrap +vim.o.wrap = true +vim.o.linebreak = true