File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed
docs/manual/release-notes Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 150150
151151- Added [Selenen](https://github.com/kampfkarren/selene) for more diagnostics in
152152 `languages.lua`.
153+
154+ - Added neovim builtin theme `habamax`.
Original file line number Diff line number Diff line change 88 inherit ( lib . trivial ) boolToString warnIf ;
99 inherit ( lib . nvim . lua ) toLuaObject ;
1010in {
11+ habamax = {
12+ builtin = true ;
13+ setup = _ : "vim.cmd('colorscheme habamax')" ;
14+ } ;
1115 base16 = {
1216 setup = { base16-colors , ...} : ''
1317 -- Base16 theme
Original file line number Diff line number Diff line change 6565
6666 config = mkIf cfg . enable {
6767 vim = {
68- startPlugins = [ cfg . name ] ;
68+ startPlugins =
69+ if ( supportedThemes . ${ cfg . name } ? builtin ) && supportedThemes . ${ cfg. name } . builtin
70+ then [ ]
71+ else [ cfg . name ] ;
6972 luaConfigRC . theme = entryBefore [ "pluginConfigs" "lazyConfigs" ] ''
7073 ${ cfg . extraConfig }
7174 ${ supportedThemes . ${ cfg. name } . setup { inherit ( cfg ) style transparent base16-colors ; } }
You can’t perform that action at this time.
0 commit comments