diff options
author | Adam <56338480+adastx@users.noreply.github.com> | 2022-05-03 12:49:59 +0200 |
---|---|---|
committer | Adam <56338480+adastx@users.noreply.github.com> | 2022-05-03 12:49:59 +0200 |
commit | a73737868a85609ba0e1ebbbcd33096ffbacd8c0 (patch) | |
tree | a7318266cd490df5b9a39e824da1baf932496507 /.config/nvim/lua/options.lua | |
parent | 280b092727fc3a0bb8a1735b53a517071dd475c6 (diff) |
nvim: disable global status, formatting
Diffstat (limited to '.config/nvim/lua/options.lua')
-rw-r--r-- | .config/nvim/lua/options.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.config/nvim/lua/options.lua b/.config/nvim/lua/options.lua index 55e32e7..9763c28 100644 --- a/.config/nvim/lua/options.lua +++ b/.config/nvim/lua/options.lua @@ -14,7 +14,7 @@ set.hlsearch = true set.ignorecase = true set.smartcase = true set.incsearch = true -set.backspace= 'indent,eol,start' +set.backspace = 'indent,eol,start' set.pastetoggle = '<F11>' set.confirm = true set.number = true @@ -34,7 +34,6 @@ set.pumblend = 0 set.splitright = true set.splitbelow = true set.cursorline = true -set.laststatus = 3 -- Disable default vim plugins local disabled_built_ins = { |