fix: messages removing the bar

This commit is contained in:
2026-08-29 15:47:54 +02:00
parent 47a5c1e9af
commit 93ba68bb33
+4 -1
View File
@@ -19,7 +19,10 @@ vim.o.splitright = true -- Vertical splits will be to the right
vim.o.wrap = false -- Don't visually wrap lines (toggle with \w)
vim.o.cmdheight = 0 -- Hide the command line when not in use
vim.cmd('syntax off') -- Disable legacy syntax highlighting
require("vim._core.ui2").enable({}) -- Enable new ui (requires nightly)
require("vim._core.ui2").enable({ -- Enable new ui (requires nightly)
msg = { targets = "msg" }
})
-- Editing =====================================================================
vim.o.expandtab = true -- Convert tabs to spaces