From 98034672bb8ba5e94b97fc00ce9917b9145a8490 Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Tue, 11 Oct 2016 10:40:24 -0400 Subject: [PATCH] Disable colorcolumn in startify buffer In a previous [issue][1] someone asked to disable colorcolumn, but it was fixed with by disabling cursorcolumn in a [pull request][2]. Both should be disabled. This change disables colorcolumn. [1]: https://github.com/mhinz/vim-startify/issues/80 [2]: https://github.com/mhinz/vim-startify/pull/83 --- autoload/startify.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/startify.vim b/autoload/startify.vim index 6e6d660..54ff55f 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -62,6 +62,7 @@ function! startify#insane_in_the_membrane() abort \ norelativenumber \ nospell \ noswapfile + \ colorcolumn= if empty(&statusline) setlocal statusline=\ startify endif