Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/release-notes/rl-0.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -607,3 +607,9 @@

- Enable `languages.ts.format` for `.js` files
- Add [emmet-ls] to `html.lsp.servers`

[ced4rtree](https://github.com/ced4rtree):

[base16-pro-max]: https://github.com/y3owk1n/base16-pro-max.nvim

- Add new transparency supporting base16 theme through [base16-pro-max].
14 changes: 14 additions & 0 deletions modules/plugins/theme/supported-themes.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,20 @@ in {
require('base16-colorscheme').setup(${toLuaObject base16-colors})
'';
};
base16-pro-max = {
setup = {
base16-colors,
transparent,
...
}: ''
-- Base16 theme
require('base16-pro-max').setup {
colors = ${toLuaObject base16-colors},
styles = { transparency = ${boolToString transparent} },
}
vim.cmd.colorscheme "base16-pro-max"
'';
};
mini-base16 = {
setup = {base16-colors, ...}: ''
-- Base16 theme
Expand Down
13 changes: 13 additions & 0 deletions npins/sources.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,19 @@
"url": "https://github.com/rrethy/base16-nvim/archive/a2907cc3cd661e0f89f7db1f4fc304782a676a7d.tar.gz",
"hash": "0acqa0b5n4l01ac9mbbxz2nbg8k8a50s0ajngg72l68q6m5z9mkm"
},
"base16-pro-max": {
"type": "Git",
"repository": {
"type": "GitHub",
"owner": "y3owk1n",
"repo": "base16-pro-max.nvim"
},
"branch": "main",
"submodules": false,
"revision": "6585489c783ae14fb57cb196f15544637953ee7c",
"url": "https://github.com/y3owk1n/base16-pro-max.nvim/archive/6585489c783ae14fb57cb196f15544637953ee7c.tar.gz",
"hash": "6cyEmjFjMundTCkI8yEwuGitJaXcAh6N1ioGfQ1u2h4="
},
"blink-cmp-spell": {
"type": "Git",
"repository": {
Expand Down
Loading