neovim-flake/modules/theme/supported_themes.nix

56 lines
1.2 KiB
Nix
Raw Normal View History

{lib}: {
onedark = {
setup = {style ? "dark"}: ''
-- OneDark theme
require('onedark').setup {
style = "${style}"
}
require('onedark').load()
'';
styles = ["dark" "darker" "cool" "deep" "warm" "warmer"];
};
tokyonight = {
setup = {style ? "night"}: ''
vim.cmd[[colorscheme tokyonight-${style}]]
'';
styles = ["day" "night" "storm"];
};
2023-04-18 01:01:51 +02:00
dracula = {
setup = ''
require('dracula').setup({});
require('dracula').load();
'';
};
catppuccin = {
setup = {
style ? "mocha",
transparent ? false,
}: ''
-- Catppuccin theme
require('catppuccin').setup {
flavour = "${style}",
transparent_background = "${builtins.toString transparent}",
integrations = {
nvimtree = {
enabled = true,
transparent_panel = false,
show_root = true,
},
hop = true,
gitsigns = true,
telescope = true,
treesitter = true,
ts_rainbow = true,
},
}
-- setup must be called before loading
vim.cmd.colorscheme "catppuccin"
'';
styles = ["latte" "frappe" "macchiato" "mocha"];
};
}