X-Git-Url: https://git.madduck.net/etc/neovim.git/blobdiff_plain/932d11bd32bc48c00920fb8602abeaa4076d9cac..bc1406379d37fb15707904ec6dcc95fd455b1d9e:/.config/nvim/options.lua diff --git a/.config/nvim/options.lua b/.config/nvim/options.lua index 22c1c4e..1165c34 100644 --- a/.config/nvim/options.lua +++ b/.config/nvim/options.lua @@ -22,6 +22,12 @@ vim.opt.background = 'light' -- list of flags to make messages shorter vim.opt.shortmess = 'atTWoOI' +-- display the current mode in the status line +vim.opt.showmode = false -- the cursor already reflects the mode + +-- do not display a status line unless there is more than one window +vim.opt.laststatus = 1 + ----------------------------------------------------------------------------- --- displaying text -----------------------------------------------------------------------------