fix(fish): conditionally use sixel for fastfetch in tmux
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled

fix(nvim): enhance catppuccin colorscheme with integrations
This commit is contained in:
2026-01-07 21:21:05 +05:30
parent 0d14b6bffc
commit 04a08d3107
2 changed files with 16 additions and 17 deletions

View File

@@ -1,8 +1,4 @@
{
pkgs,
stablePkgs,
...
}: let
{pkgs, ...}: let
mkMappings = mappings:
[]
++ (pkgs.lib.optionals (builtins.hasAttr "normal" mappings) (mkMode mappings.normal "n"))
@@ -17,16 +13,6 @@
mode = mode;
})
mappings;
border = [
""
""
""
""
""
""
""
""
];
rawLua = lua: {
"__raw" = ''
${lua}
@@ -60,7 +46,20 @@ in {
colorschemes = {
catppuccin = {
enable = true;
settings.flavour = "mocha";
settings = {
flavour = "mocha";
integrations = {
cmp = true;
gitsigns = true;
nvimtree = true;
treesitter = true;
notify = true;
mini = {
enabled = true;
indentscope_color = "";
};
};
};
};
};
keymaps = mkMappings {