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
231 B
Nix

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