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

13 lines
226 B
Nix

{ nix2lua, vim, ... }:
{ flavour ? "frappe" }:
with nix2lua.lib;
{
catppuccin = [
(vim.g "catppuccin_flavour" flavour)
(pipe1 (require "catppuccin") (call0 "setup"))
(vim.cmd' "colorscheme catppuccin")
];
}