modules/catppuccin: update configs

This commit is contained in:
Dmitriy Pleshevskiy 2024-04-21 00:29:44 +03:00
parent 8933762c5c
commit 782c380023
Signed by: pleshevskiy
GPG Key ID: 17041163DA10A9A2
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
{ nix2lua, ... }:
{ nix2lua, vim, ... }:
{ flavour ? "frappe" }:
@ -6,8 +6,8 @@
with nix2lua.lib;
{
catppuccin = [
(set "vim.g.catppuccin_flavour" flavour)
(vim.g "catppuccin_flavour" flavour)
(pipe1 (require "catppuccin") (call0 "setup"))
(call "vim.cmd" "colorscheme catppuccin")
(vim.cmd' "colorscheme catppuccin")
];
}