From 9a6bfd60c3a93874587a5ceda90840923880e1ae Mon Sep 17 00:00:00 2001 From: Alex Manning Date: Wed, 25 May 2022 09:33:41 +0100 Subject: [PATCH] Add cursorcolumn. --- home/.config/pylintrc | 2 +- home/.vimrc.d/base.vim | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/home/.config/pylintrc b/home/.config/pylintrc index 8968fa3..0b7a185 100644 --- a/home/.config/pylintrc +++ b/home/.config/pylintrc @@ -140,7 +140,7 @@ confidence= # exception-escape, # comprehension-escape -disable=bad-continuation,unused-variable,line-too-long +disable=bad-continuation,unused-variable,line-too-long,missing-class-docstring # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option diff --git a/home/.vimrc.d/base.vim b/home/.vimrc.d/base.vim index 664ee84..4030da2 100644 --- a/home/.vimrc.d/base.vim +++ b/home/.vimrc.d/base.vim @@ -48,6 +48,7 @@ set hlsearch " Highlight all search matches set showmatch " Show the matching bracket set matchpairs=(:),{:},[:] " List of characters we expect in balanced pairs set cursorline " Highlights the current line +set cursorcolumn " Highlights the current column " Mouse options: set mouse=a " Enable the mouse for all modes