⚙️ config(nvim): add some new options for the statusbar, cmd and indentation

This commit is contained in:
Sergio Laín 2024-03-09 19:23:15 +01:00
parent 7d6afd5bee
commit c7b3dcc031
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -31,8 +31,14 @@ go.root_spec = {
"cwd",
}
-- Show last command in the status line
-- Disable annoying cmd line stuff
o.showcmd = false
o.laststatus = 0
o.cmdheight = 0
-- Enable spell checking
o.spell = true
-- Backspacing and indentation when wrapping
o.backspace = { "start", "eol", "indent" }
o.breakindent = true