itchyny / calendar.vim

A calendar application for Vim
MIT License
1.95k stars 72 forks source link

How to disable colors for days of the week #172

Closed LiamHz closed 4 years ago

LiamHz commented 4 years ago

How do I disable the colors for days of the week (e.g. the top bar when in month view)?

Any help is much appreciated.

LiamHz commented 4 years ago

Solved!

I used this command :so $VIMRUNTIME/syntax/hitest.vim in vim to display all the current highlight groups, and used /Calendar to search for the names of the highlight groups I cared about.

Then I ran these commands to set the desired highlight groups to "Normal"

autocmd FileType calendar hi! link CalendarDayTitle Normal
autocmd FileType calendar hi! link CalendarSaturdayTitle Normal
autocmd FileType calendar hi! link CalendarSundayTitle Normal