From 091e9f3bffc907ea2f44feaa2a70027b29090ff6 Mon Sep 17 00:00:00 2001 From: Thomas Gideon Date: Thu, 16 Sep 2021 18:15:33 -0400 Subject: [PATCH] Dial in --- rust.vim | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rust.vim b/rust.vim index ef1f6be..4acbe45 100644 --- a/rust.vim +++ b/rust.vim @@ -74,6 +74,9 @@ EOF " Set updatetime for CursorHold " 300ms of no cursor movement to trigger CursorHold -set updatetime=300 +set updatetime=750 " Show diagnostic popup on cursor hold autocmd CursorHold * lua vim.lsp.diagnostic.show_line_diagnostics() +" have a fixed column for the diagnostics to appear in +" this removes the jitter when warnings/errors flow in +set signcolumn=yes