diff options
author | Chris <[email protected]> | 2021-03-17 14:15:20 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-17 14:15:20 -0400 |
commit | b29ef8fa58b5214ed835f7711243e0ba492aebce (patch) | |
tree | 02e47ce9e6fb8fc387efc8b875b721c2cc899c85 /lua/settings.lua | |
parent | c3ec305ccbd1b1fd54eabb748c1f3083dd7b8ca2 (diff) |
bug fix for matchup
Diffstat (limited to 'lua/settings.lua')
-rw-r--r-- | lua/settings.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/settings.lua b/lua/settings.lua index 5c5945cf..2d7c3ac4 100644 --- a/lua/settings.lua +++ b/lua/settings.lua @@ -17,6 +17,7 @@ vim.cmd('set sw=4') --Change the number of space characte vim.bo.expandtab=true --Converts tabs to spaces vim.bo.smartindent=true --Makes indenting smart vim.wo.number = true +vim.o.laststatus = 2 vim.wo.cursorline=true --Enable highlighting of the current line vim.o.showtabline=2 --Always show tabs vim.o.showmode=false --We don't need to see things like -- INSERT -- anymore |