Michael Thomson 67be496482
neovim before nixvim
Signed-off-by: Michael Thomson <michael@michaelthomson.dev>
2024-11-13 14:11:33 -05:00

23 lines
397 B
Nix

{ pkgs, config, ... }:
{
programs.kitty = {
enable = true;
font = {
name = "JetBrainsMono Nerd Font";
size = 12;
};
shellIntegration = {
enableZshIntegration = true;
};
themeFile = "kanagawa";
# darwinLaunchOptions = [
# "--single-instance"
# ];
settings = {
background_opacity = "0.9";
background_blur = 5;
};
};
}