aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2017-05-14 18:54:54 +0200
committerMax Christian Pohle2017-05-14 18:54:54 +0200
commit9a4b58650564577f356fd2eee06b7d45ce31894a (patch)
tree7c66866bf2ab8c26140d46290a9f811e0c0f210b
parent49a62e5b70d584bb490dc75ac505d6ebf2d221c1 (diff)
downloadvim-9a4b58650564577f356fd2eee06b7d45ce31894a.tar.bz2
vim-9a4b58650564577f356fd2eee06b7d45ce31894a.zip
Made signcolumn always visible
So that the text does not 'jump' when a new error causes the column to show up.
-rw-r--r--vimrc-full1
1 files changed, 1 insertions, 0 deletions
diff --git a/vimrc-full b/vimrc-full
index c5f587b..d186aa0 100644
--- a/vimrc-full
+++ b/vimrc-full
@@ -60,6 +60,7 @@ set scrolljump=5 | " how many lines get scrolled into view when cur
60set splitbelow | " open new windows below the current one (i find that more intuitive) 60set splitbelow | " open new windows below the current one (i find that more intuitive)
61set shiftround | " indent/unindent snaps to multiple of shiftwidth 61set shiftround | " indent/unindent snaps to multiple of shiftwidth
62set showcmd | " essential: show keys of combined commands in the lower right corner (BUT SLOW, makes cursor flickering) 62set showcmd | " essential: show keys of combined commands in the lower right corner (BUT SLOW, makes cursor flickering)
63set signcolumn=yes | " auto=auto hide, yes=always, no=never show the column with error indicators
63set showtabline=2 | " 0: never, 1: only if there are at least two tabs, 2:always 64set showtabline=2 | " 0: never, 1: only if there are at least two tabs, 2:always
64set winwidth=30 | " keep NERDTreeWindow at least this size 65set winwidth=30 | " keep NERDTreeWindow at least this size
65set winminwidth=30 | " (and all other windows, so TODO: watch out) 66set winminwidth=30 | " (and all other windows, so TODO: watch out)
..