switch font to IBM Plex

This commit is contained in:
cy 2024-12-31 23:04:06 -05:00
parent 40e833ee4e
commit 21ee42747b
4 changed files with 9 additions and 7 deletions

View file

@ -4,7 +4,7 @@
enable = true;
settings = {
main = {
font = "RobotoMono Nerd Font:size=8";
font = "IBM Plex Mono:size=8";
dpi-aware = "yes";
};
bell = {

View file

@ -21,7 +21,10 @@
];
programs.zoxide.options = [ "--cmd cd" ];
programs.fzf.enable = true;
programs.fzf = {
enable = true;
defaultCommand = "rg";
};
programs.zoxide.enable = true;
programs.eza.enable = true;
programs.neovim.enable = true;
@ -36,4 +39,6 @@
};
};
};
programs.ripgrep.enable = true;
programs.man.generateCaches = true;
}

View file

@ -107,13 +107,9 @@
"gs" = "git status --short";
"gss" = "git status";
};
sessionVariables = {
"FZF_DEFAULT_COMMAND" = "rg";
"MANPAGER" = "nvim +Man!";
};
};
programs.fzf.enableZshIntegration = false;
programs.fzf.enableZshIntegration = false; # manually integrated see above
programs.zoxide.enableZshIntegration = true;
programs.eza.enableZshIntegration = true;
programs.nix-index.enableZshIntegration = false;

View file

@ -186,6 +186,7 @@
fonts.packages = with pkgs; [
nerd-fonts.roboto-mono
ibm-plex
];
hardware.enableAllFirmware = true;