summaryrefslogtreecommitdiffstats
path: root/src/features/light.rs
blob: c326adc441adc759eaec2853a5c13617957898cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::features::OptionValueFunction;
use crate::options::theme;

pub fn make_feature() -> Vec<(String, OptionValueFunction)> {
    builtin_feature!([
        (
            "theme",
            String,
            None,
            _opt => theme::DEFAULT_DARK_SYNTAX_THEME
        )
    ])
}