aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nvim
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-07-14 16:56:28 -0500
committerToby Vincent <tobyv13@gmail.com>2022-07-14 17:01:48 -0500
commitaec5b2fbcda514262e123b18a1ebde5145516dd9 (patch)
tree241db2180a6e12a335a948572253c29a33ae1824 /nvim
parentfd30a859c32ec57c1d8bf1a693e8b487b64cd519 (diff)
feat(nvim): set signcolumn to always show to prevent shift on updates
Diffstat (limited to 'nvim')
-rw-r--r--nvim/.config/nvim/lua/tobyvin/options.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/nvim/.config/nvim/lua/tobyvin/options.lua b/nvim/.config/nvim/lua/tobyvin/options.lua
index a5775b5..2d1b3ef 100644
--- a/nvim/.config/nvim/lua/tobyvin/options.lua
+++ b/nvim/.config/nvim/lua/tobyvin/options.lua
@@ -29,6 +29,7 @@ M.setup = function()
vim.opt.backspace = { "indent", "start", "eol" }
vim.opt.mouse = "a"
vim.opt.updatetime = 500
+ vim.opt.timeoutlen = 1000
vim.opt.expandtab = true
vim.opt.softtabstop = 4
vim.opt.textwidth = 120
@@ -44,6 +45,7 @@ M.setup = function()
vim.opt.splitright = true
vim.opt.laststatus = 2
vim.opt.colorcolumn = "+0"
+ vim.opt.signcolumn = "yes:1"
vim.opt.hidden = true
vim.opt.inccommand = "split"
vim.opt.shell = "zsh"