diff options
Diffstat (limited to 'lua/settings.lua')
-rw-r--r-- | lua/settings.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/settings.lua b/lua/settings.lua index fbf24713..99b72622 100644 --- a/lua/settings.lua +++ b/lua/settings.lua @@ -31,7 +31,7 @@ vim.o.showtabline=2 --Always show tabs vim.o.showmode=false --We don't need to see things like -- INSERT -- anymore vim.o.backup=false --This is recommended by coc vim.o.writebackup=false --This is recommended by coc -vim.o.signcolumn="yes" --Always show the signcolumn, otherwise it would shift the text each time +vim.wo.signcolumn="yes" --Always show the signcolumn, otherwise it would shift the text each time vim.o.updatetime=300 --Faster completion vim.o.timeoutlen=1000 --By default timeoutlen is 1000 ms vim.o.clipboard="unnamedplus" --Copy paste between vim and everything else |