diff options
author | Max Christian Pohle | 2017-05-14 18:54:54 +0200 |
---|---|---|
committer | Max Christian Pohle | 2017-05-14 18:54:54 +0200 |
commit | 9a4b58650564577f356fd2eee06b7d45ce31894a (patch) | |
tree | 7c66866bf2ab8c26140d46290a9f811e0c0f210b | |
parent | 49a62e5b70d584bb490dc75ac505d6ebf2d221c1 (diff) | |
download | vim-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-full | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -60,6 +60,7 @@ set scrolljump=5 | " how many lines get scrolled into view when cur | |||
60 | set splitbelow | " open new windows below the current one (i find that more intuitive) | 60 | set splitbelow | " open new windows below the current one (i find that more intuitive) |
61 | set shiftround | " indent/unindent snaps to multiple of shiftwidth | 61 | set shiftround | " indent/unindent snaps to multiple of shiftwidth |
62 | set showcmd | " essential: show keys of combined commands in the lower right corner (BUT SLOW, makes cursor flickering) | 62 | set showcmd | " essential: show keys of combined commands in the lower right corner (BUT SLOW, makes cursor flickering) |
63 | set signcolumn=yes | " auto=auto hide, yes=always, no=never show the column with error indicators | ||
63 | set showtabline=2 | " 0: never, 1: only if there are at least two tabs, 2:always | 64 | set showtabline=2 | " 0: never, 1: only if there are at least two tabs, 2:always |
64 | set winwidth=30 | " keep NERDTreeWindow at least this size | 65 | set winwidth=30 | " keep NERDTreeWindow at least this size |
65 | set winminwidth=30 | " (and all other windows, so TODO: watch out) | 66 | set winminwidth=30 | " (and all other windows, so TODO: watch out) |