From c7b3dcc03107912c7157e84c5d384a7a9e5c4372 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Sat, 9 Mar 2024 19:23:15 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9A=99=EF=B8=8F=20config(nvim):=20add=20some?= =?UTF-8?q?=20new=20options=20for=20the=20statusbar,=20cmd=20and=20indenta?= =?UTF-8?q?tion?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/nvim/lua/config/options.lua | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.config/nvim/lua/config/options.lua b/.config/nvim/lua/config/options.lua index fa647e3c..87b02832 100644 --- a/.config/nvim/lua/config/options.lua +++ b/.config/nvim/lua/config/options.lua @@ -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