From f11e54f390e1e693dcf6c6e34a2e81ea583a4fb8 Mon Sep 17 00:00:00 2001 From: Jacob Date: Sat, 27 Jan 2024 17:34:32 -0500 Subject: [PATCH] Remove laststatus line Causes issues on certain neovim versions and it's ultimately unnecessary. --- .config/nvim/init.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 6ccb985..6a4f89b 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -112,7 +112,6 @@ opt.softtabstop = 4 -- Display a tab (\t) as 4 spaces opt.shiftwidth = 4 -- Indents for << or >> opt.spellsuggest = 'best,5' -- Prefer the best suggestions opt.foldmethod = 'indent' -- Fold based on indents -opt.laststatus = 0 -- Don't display file information opt.termguicolors = true -- Enable true color opt.autochdir = true -- Automatically change directory to the file we're editing opt.background = 'dark' -- Set background to dark