Description of the problem or steps to reproduce
The default configuration doesn't highlight crontab on MacOS, when running 'crontab -e'
Specifications
Version: 2.0.13
Commit hash: 68d88b5
Compiled on October 21, 2023
OS: MacOS 14.3.1
Terminal: alacritty
Solution
Create a file '~/.config/micro/syntax/crontab.yaml', and add detection for MacOS file path:
filetype: crontab
detect:
filename: "(crontab$|[/]tmp[/]crontab[.])"
...
After that, micro is able to detect crontab on MacOS:

Request
For others, could you please update the default runtime/syntax/crontab.yaml file to add support for MacOS crontab paths?