dblume commited on 2023-11-15 08:49:27
Showing 1 changed files, with 8 additions and 8 deletions.
... | ... |
@@ -60,8 +60,8 @@ if has('gui_running') " Didn't work: if &term != 'builtin_gui' |
60 | 60 |
if v:version >= 703 |
61 | 61 |
highlight ColorColumn ctermbg=255 guibg=#F6F6F6 |
62 | 62 |
endif |
63 |
- highlight StatusLine ctermfg=17 ctermbg=Gray " override scheme |
|
64 |
- highlight StatusLineNC ctermfg=20 ctermbg=LightGray" override scheme |
|
63 |
+ highlight statusline ctermfg=17 ctermbg=Gray " override scheme |
|
64 |
+ highlight statuslineNC ctermfg=20 ctermbg=LightGray" override scheme |
|
65 | 65 |
if has('win32') |
66 | 66 |
set guifont=DejaVu_Sans_Mono_for_Powerline:h10:cANSI:qDRAFT |
67 | 67 |
endif |
... | ... |
@@ -73,12 +73,15 @@ else |
73 | 73 |
if v:version >= 703 |
74 | 74 |
highlight ColorColumn ctermbg=233 guibg=Black " dark gray (or 17, dark blue) |
75 | 75 |
endif |
76 |
- highlight StatusLine ctermfg=24 ctermbg=LightGray " override scheme |
|
77 |
- highlight StatusLineNC ctermfg=236 ctermbg=Gray " override scheme |
|
76 |
+ highlight statusline ctermfg=24 ctermbg=250 " override scheme |
|
77 |
+ highlight statuslineNC ctermfg=236 ctermbg=Gray " override scheme |
|
78 | 78 |
highlight MatchParen term=reverse ctermbg=23 " 23 is more subtle than default |
79 | 79 |
endif |
80 | 80 |
|
81 |
-" let g:loaded_airline = 1 " For testing the statusline settings above |
|
81 |
+au InsertEnter * hi statusline guibg=Cyan ctermfg=19 guifg=Black ctermbg=248 |
|
82 |
+au InsertLeave * hi statusline term=bold,reverse cterm=bold,reverse ctermfg=24 ctermbg=250 guifg=black guibg=#c2bfa5 |
|
83 |
+ |
|
84 |
+let g:loaded_airline = 1 " For testing the statusline settings above |
|
82 | 85 |
|
83 | 86 |
" set mouse=v " visual mode, not working great for PuTTY |
84 | 87 |
|
... | ... |
@@ -114,9 +117,6 @@ function! Trim_brackets(fn) |
114 | 117 |
endif |
115 | 118 |
endfunction |
116 | 119 |
|
117 |
-au InsertEnter * hi statusline guibg=Cyan ctermfg=26 guifg=Black ctermbg=7 |
|
118 |
-au InsertLeave * hi StatusLine term=bold,reverse cterm=bold,reverse ctermfg=24 ctermbg=7 guifg=black guibg=#c2bfa5 |
|
119 |
- |
|
120 | 120 |
set statusline= |
121 | 121 |
set statusline+=\ %{g:currentmode[mode()]} |
122 | 122 |
set statusline+=%{&paste?'\ \ ยท\ PASTE':''} |
123 | 123 |