fix: messages removing the bar
This commit is contained in:
+20
-17
@@ -3,23 +3,26 @@ vim.g.mapleader = ' ' -- Use `<Space>` as <Leader> key
|
|||||||
vim.o.undofile = true -- Enable persistent undo
|
vim.o.undofile = true -- Enable persistent undo
|
||||||
|
|
||||||
-- UI ==========================================================================
|
-- UI ==========================================================================
|
||||||
vim.o.breakindent = true -- Indent wrapped lines to match line start
|
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.breakindentopt = 'list:-1' -- Add padding for lists (if 'wrap' is set)
|
||||||
vim.o.cursorline = true -- Enable current line highlighting
|
vim.o.cursorline = true -- Enable current line highlighting
|
||||||
vim.o.linebreak = true -- Wrap lines at 'breakat' (if 'wrap' is set)
|
vim.o.linebreak = true -- Wrap lines at 'breakat' (if 'wrap' is set)
|
||||||
vim.o.list = true -- Show helpful text indicators
|
vim.o.list = true -- Show helpful text indicators
|
||||||
vim.o.number = true -- Show line numbers
|
vim.o.number = true -- Show line numbers
|
||||||
vim.o.pumheight = 10 -- Make popup menu smaller
|
vim.o.pumheight = 10 -- Make popup menu smaller
|
||||||
vim.o.pummaxwidth = 100 -- Make popup menu not too wide
|
vim.o.pummaxwidth = 100 -- Make popup menu not too wide
|
||||||
vim.o.shortmess = 'CFOSWaco' -- Disable some built-in completion messages
|
vim.o.shortmess = 'CFOSWaco' -- Disable some built-in completion messages
|
||||||
vim.o.signcolumn = 'yes' -- Always show signcolumn (less flicker)
|
vim.o.signcolumn = 'yes' -- Always show signcolumn (less flicker)
|
||||||
vim.o.splitbelow = true -- Horizontal splits will be below
|
vim.o.splitbelow = true -- Horizontal splits will be below
|
||||||
vim.o.splitkeep = 'screen' -- Reduce scroll during window split
|
vim.o.splitkeep = 'screen' -- Reduce scroll during window split
|
||||||
vim.o.splitright = true -- Vertical splits will be to the right
|
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.wrap = false -- Don't visually wrap lines (toggle with \w)
|
||||||
vim.o.cmdheight = 0 -- Hide the command line when not in use
|
vim.o.cmdheight = 0 -- Hide the command line when not in use
|
||||||
vim.cmd('syntax off') -- Disable legacy syntax highlighting
|
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 =====================================================================
|
-- Editing =====================================================================
|
||||||
vim.o.expandtab = true -- Convert tabs to spaces
|
vim.o.expandtab = true -- Convert tabs to spaces
|
||||||
|
|||||||
Reference in New Issue
Block a user