aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sabadie <dimitri.sabadie@gmail.com>2020-11-27 02:05:18 +0100
committerDimitri Sabadie <dimitri.sabadie@gmail.com>2020-11-27 02:05:18 +0100
commit66bd3e4f38f48104ff58b60f2841c098e8de928c (patch)
treee71b86d15f155dfbf88d38787f73677665ee9ffd
parentde486dfefbad289b849f656de39a83beab076619 (diff)
Remove gitgutter and bufferline style updates.
This shouldn’t be done in a colorscheme as it will negatively impact people with a weird / hard to spot side-effect.
-rw-r--r--colors/doom-one.vim13
1 files changed, 0 insertions, 13 deletions
diff --git a/colors/doom-one.vim b/colors/doom-one.vim
index f272e34..8ea8383 100644
--- a/colors/doom-one.vim
+++ b/colors/doom-one.vim
@@ -195,19 +195,6 @@ call s:_('BufferTabpageFill', s:base4, s:bg_other, 'bold')
call s:_('BufferPart', s:diff_info_fg, s:diff_info_bg0, 'bold')
-let g:icons = extend(get(g:, 'icons', {}), {
-\ 'bufferline_separator_active': '▎',
-\ 'bufferline_separator_inactive': '▎',
-\ 'gitgutter_sign_added': "\u00a0│",
-\ 'gitgutter_sign_removed': "\u00a0│",
-\ 'gitgutter_sign_modified': "\u00a0│",
-\ 'gitgutter_sign_modified_removed': "\u00a0│",
-\})
-let gitgutter_sign_added = g:icons.gitgutter_sign_added
-let gitgutter_sign_removed = g:icons.gitgutter_sign_removed
-let gitgutter_sign_modified = g:icons.gitgutter_sign_modified
-let gitgutter_sign_modified_removed = g:icons.gitgutter_sign_modified_removed
-
" }}}
" Search, Highlight, Conceal, Messages {{{