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
231 B
Nix
Raw Normal View History

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