⚙️ config(nvim): add some new options for the statusbar, cmd and indentation
This commit is contained in:
parent
7d6afd5bee
commit
c7b3dcc031
1 changed files with 7 additions and 1 deletions
|
@ -31,8 +31,14 @@ go.root_spec = {
|
||||||
"cwd",
|
"cwd",
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Show last command in the status line
|
-- Disable annoying cmd line stuff
|
||||||
o.showcmd = false
|
o.showcmd = false
|
||||||
|
o.laststatus = 0
|
||||||
|
o.cmdheight = 0
|
||||||
|
|
||||||
-- Enable spell checking
|
-- Enable spell checking
|
||||||
o.spell = true
|
o.spell = true
|
||||||
|
|
||||||
|
-- Backspacing and indentation when wrapping
|
||||||
|
o.backspace = { "start", "eol", "indent" }
|
||||||
|
o.breakindent = true
|
||||||
|
|
Loading…
Add table
Reference in a new issue