Skip to content

Commit d1b2a1b

Browse files
committed
add back modified groups to airline
1 parent 0c72232 commit d1b2a1b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

autoload/airline/themes/dracula.vim

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ let g:airline#themes#dracula#palette = {
5252
\ 'airline_error': s:clr('bg', 'red'),
5353
\ },
5454
\ ),
55+
\ 'normal_modified': s:color_map(
56+
\ ['bg', 'purple'],
57+
\ ['fg', 'comment'],
58+
\ ['fg', 'bgdark'],
59+
\ ),
5560
\ 'insert': s:color_map(
5661
\ ['bg', 'green'],
5762
\ ['fg', 'comment'],
@@ -61,6 +66,11 @@ let g:airline#themes#dracula#palette = {
6166
\ 'airline_error': s:clr('bg', 'red'),
6267
\ },
6368
\ ),
69+
\ 'insert_modified': s:color_map(
70+
\ ['bg', 'green'],
71+
\ ['fg', 'comment'],
72+
\ ['fg', 'bgdark'],
73+
\ ),
6474
\ 'replace': s:color_map(
6575
\ ['bg', 'orange'],
6676
\ ['fg', 'comment'],
@@ -70,6 +80,11 @@ let g:airline#themes#dracula#palette = {
7080
\ 'airline_error': s:clr('bg', 'red'),
7181
\ },
7282
\ ),
83+
\ 'replace_modified': s:color_map(
84+
\ ['bg', 'orange'],
85+
\ ['fg', 'comment'],
86+
\ ['fg', 'bgdark'],
87+
\ ),
7388
\ 'visual': s:color_map(
7489
\ ['bg', 'yellow'],
7590
\ ['fg', 'comment'],
@@ -79,6 +94,11 @@ let g:airline#themes#dracula#palette = {
7994
\ 'airline_error': s:clr('bg', 'red'),
8095
\ },
8196
\ ),
97+
\ 'visual_modified': s:color_map(
98+
\ ['bg', 'yellow'],
99+
\ ['fg', 'comment'],
100+
\ ['fg', 'bgdark'],
101+
\ ),
82102
\ 'inactive': s:color_map(
83103
\ ['fg', 'selection'],
84104
\ ['fg', 'selection'],

0 commit comments

Comments
 (0)