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 216216 [`syntax-gaslighting`](https://github.com/NotAShelf/syntax-gaslighting.nvim),
217217 you're crazy.
218218
219+ - Added neovim builtin theme `habamax`.
220+
219221[vagahbond](https://github.com/vagahbond): [codewindow.nvim]:
220222https://github.com/gorbit99/codewindow.nvim
221223
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