feat: done messing around with firacode, looks so much better now

pull/20/head
htran 2023-09-22 18:17:13 -07:00
parent 9405373bc8
commit 122693e9c8
5 changed files with 17 additions and 12 deletions

View File

@ -144,11 +144,11 @@
"systems": "systems_8"
},
"locked": {
"lastModified": 1688380630,
"narHash": "sha256-8ilApWVb1mAi4439zS3iFeIT0ODlbrifm/fegWwgHjA=",
"lastModified": 1695195896,
"narHash": "sha256-pq9q7YsGXnQzJFkR5284TmxrLNFc0wo4NQ/a5E93CQU=",
"owner": "numtide",
"repo": "devshell",
"rev": "f9238ec3d75cefbb2b42a44948c4e8fb1ae9a205",
"rev": "05d40d17bf3459606316e3e9ec683b784ff28f16",
"type": "github"
},
"original": {

View File

@ -1,12 +1,16 @@
# Font configuration
font_family Hack Nerd Font Mono
bold_font Hack Nerd Font Mono Bold
italic_font Hack Nerd Font Mono Italic
bold_italic_font Hack Nerd Font Mono Bold Italic
font_family FiraCode Nerd Font Mono
bold_font FiraCode Nerd Font Mono Bold
italic_font FiraCode Nerd Font Mono Italic
bold_italic_font FiraCode Nerd Font Mono Bold Italic
font_size 11.0
# firacode-specific
modify_font cell_height -6px
modify_font baseline 2
sync_to_monitor no
disable_ligatures never
# if I'm hovering over the font, don't perform ligature, thanks.
disable_ligatures cursor
# NO BELLS!
enable_audio_bell no

View File

@ -96,6 +96,7 @@ in {
{
nix-rebuild = "sudo nixos-rebuild switch";
hm-switch = "home-manager switch --flake";
hm-switch-u = "home-manager switch --flake .#$${USER}";
}
// (cfg.shellAliases or {});
history = {

View File

@ -18,9 +18,9 @@ in {
}: {
config.fonts.fontconfig.enable = true;
config.home.packages = [
(pkgs.nerdfonts.override {fonts = ["Hack"];})
(pkgs.nerdfonts.override {fonts = ["FiraCode"];})
];
config."${namespace}".alacritty.font.family = "Hack Nerd Font Mono";
config."${namespace}".alacritty.font.family = "FiraCode Nerd Font Mono";
};
secrets = {
@ -75,7 +75,7 @@ in {
enable = true;
config-path = "${inputs.self}//native_configs/alacritty/alacritty.yml";
font.size = 11.0;
font.family = "Hack Nerd Font Mono";
font.family = "FiraCode Nerd Font Mono";
};
};

View File

@ -92,7 +92,7 @@ in {
programs.zsh = {
enable = true;
enableCompletion = true;
# enableAutosuggestions = true;
enableAutosuggestions = true;
shellAliases =
{
nix-rebuild = "sudo nixos-rebuild switch";