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