From fb863f0359995526256d7470874452bddc7de559 Mon Sep 17 00:00:00 2001 From: Daniel Carrillo Date: Sat, 1 Oct 2022 19:32:35 +0200 Subject: [PATCH] [neovim] set cmdheight=0 --- .config/nvim/lua/user/options.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/nvim/lua/user/options.lua b/.config/nvim/lua/user/options.lua index e016528..3d62a99 100644 --- a/.config/nvim/lua/user/options.lua +++ b/.config/nvim/lua/user/options.lua @@ -35,10 +35,11 @@ vim.opt.tabstop = 4 -- insert 4 spaces for a tab vim.opt.numberwidth = 4 -- set number column width to 2 {default 4} vim.opt.signcolumn = "yes" -- always show the sign column, otherwise it would shift the text each time vim.opt.wrap = false -- display lines as one long line -vim.opt.scrolloff = 8 -- is one of my fav +vim.opt.scrolloff = 8 vim.opt.sidescrolloff = 8 vim.opt.guifont = "monospace:h17" -- the font used in graphical neovim applications vim.opt.fillchars.eob = " " vim.opt.shortmess:append("c") vim.opt.whichwrap:append("<,>,[,],h,l") vim.opt.iskeyword:append("-") +vim.opt.cmdheight=0 -- experimental