This repository has been archived on 2024-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
neovim/modules/catppuccin.nix

14 lines
226 B
Nix
Raw Normal View History

2024-04-21 00:29:44 +03:00
{ nix2lua, vim, ... }:
2024-04-18 00:04:06 +03:00
{ flavour ? "frappe" }:
with nix2lua.lib;
{
catppuccin = [
2024-04-21 00:29:44 +03:00
(vim.g "catppuccin_flavour" flavour)
2024-04-20 23:05:33 +03:00
(pipe1 (require "catppuccin") (call0 "setup"))
2024-04-21 00:29:44 +03:00
(vim.cmd' "colorscheme catppuccin")
2024-04-18 00:04:06 +03:00
];
}