From 93ba68bb334f0f5e78c7792fc2fd591475862665 Mon Sep 17 00:00:00 2001 From: Job79 Date: Sat, 29 Aug 2026 15:47:54 +0200 Subject: [PATCH] fix: messages removing the bar --- plugin/10_options.lua | 37 ++++++++++++++++++++----------------- 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/plugin/10_options.lua b/plugin/10_options.lua index 4caa138..0d60542 100644 --- a/plugin/10_options.lua +++ b/plugin/10_options.lua @@ -3,23 +3,26 @@ vim.g.mapleader = ' ' -- Use `` as key vim.o.undofile = true -- Enable persistent undo -- UI ========================================================================== -vim.o.breakindent = true -- Indent wrapped lines to match line start -vim.o.breakindentopt = 'list:-1' -- Add padding for lists (if 'wrap' is set) -vim.o.cursorline = true -- Enable current line highlighting -vim.o.linebreak = true -- Wrap lines at 'breakat' (if 'wrap' is set) -vim.o.list = true -- Show helpful text indicators -vim.o.number = true -- Show line numbers -vim.o.pumheight = 10 -- Make popup menu smaller -vim.o.pummaxwidth = 100 -- Make popup menu not too wide -vim.o.shortmess = 'CFOSWaco' -- Disable some built-in completion messages -vim.o.signcolumn = 'yes' -- Always show signcolumn (less flicker) -vim.o.splitbelow = true -- Horizontal splits will be below -vim.o.splitkeep = 'screen' -- Reduce scroll during window split -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) +vim.o.breakindent = true -- Indent wrapped lines to match line start +vim.o.breakindentopt = 'list:-1' -- Add padding for lists (if 'wrap' is set) +vim.o.cursorline = true -- Enable current line highlighting +vim.o.linebreak = true -- Wrap lines at 'breakat' (if 'wrap' is set) +vim.o.list = true -- Show helpful text indicators +vim.o.number = true -- Show line numbers +vim.o.pumheight = 10 -- Make popup menu smaller +vim.o.pummaxwidth = 100 -- Make popup menu not too wide +vim.o.shortmess = 'CFOSWaco' -- Disable some built-in completion messages +vim.o.signcolumn = 'yes' -- Always show signcolumn (less flicker) +vim.o.splitbelow = true -- Horizontal splits will be below +vim.o.splitkeep = 'screen' -- Reduce scroll during window split +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) + msg = { targets = "msg" } +}) + -- Editing ===================================================================== vim.o.expandtab = true -- Convert tabs to spaces