neovim before nixvim

Signed-off-by: Michael Thomson <michael@michaelthomson.dev>
This commit is contained in:
2024-11-13 14:11:33 -05:00
parent 1f361e80f6
commit 67be496482
12 changed files with 74 additions and 106 deletions

View File

@@ -1,27 +1,22 @@
{ pkgs, config, ... }:
{
home.packages = with pkgs; [
(nerdfonts.override { fonts = [ "Iosevka" "NerdFontsSymbolsOnly" ]; })
];
programs.kitty = {
enable = true;
font = {
name = "Iosevka Nerd Font Mono";
name = "JetBrainsMono Nerd Font";
size = 12;
};
shellIntegration = {
enableZshIntegration = true;
};
theme = "Catppuccin-Frappe";
darwinLaunchOptions = [
"--single-instance"
];
themeFile = "kanagawa";
# darwinLaunchOptions = [
# "--single-instance"
# ];
settings = {
background_opacity = "0.9";
background_blur = 5;
macos_traditional_fullscreen = "yes";
};
};
}