From 47be64d7f2c0dee92df6038a8639e7c93abf5aa7 Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Wed, 27 Nov 2019 13:52:21 +0100 Subject: [PATCH] themes: drop simple colorscheme - theme mappings vim-airline by default already tries to load theme names, that have the same name as the colorscheme. Therefore, it does not make sense, to add mappings that result in the same theme name. So drop the base16, wombat, zenburn and solarized keys --- autoload/airline/init.vim | 4 ---- 1 file changed, 4 deletions(-) diff --git a/autoload/airline/init.vim b/autoload/airline/init.vim index 18d22ceb..0e648e04 100644 --- a/autoload/airline/init.vim +++ b/autoload/airline/init.vim @@ -59,11 +59,7 @@ function! airline#init#bootstrap() call extend(g:airline_theme_map, { \ 'default': 'dark', \ '\CTomorrow': 'tomorrow', - \ 'base16': 'base16', \ 'mo[l|n]okai': 'molokai', - \ 'wombat': 'wombat', - \ 'zenburn': 'zenburn', - \ 'solarized': 'solarized', \ 'flattened': 'solarized', \ '\CNeoSolarized': 'solarized', \ }, 'keep')