feat: done messing around with firacode, looks so much better now
parent
9405373bc8
commit
122693e9c8
|
@ -144,11 +144,11 @@
|
||||||
"systems": "systems_8"
|
"systems": "systems_8"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1688380630,
|
"lastModified": 1695195896,
|
||||||
"narHash": "sha256-8ilApWVb1mAi4439zS3iFeIT0ODlbrifm/fegWwgHjA=",
|
"narHash": "sha256-pq9q7YsGXnQzJFkR5284TmxrLNFc0wo4NQ/a5E93CQU=",
|
||||||
"owner": "numtide",
|
"owner": "numtide",
|
||||||
"repo": "devshell",
|
"repo": "devshell",
|
||||||
"rev": "f9238ec3d75cefbb2b42a44948c4e8fb1ae9a205",
|
"rev": "05d40d17bf3459606316e3e9ec683b784ff28f16",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -1,12 +1,16 @@
|
||||||
# Font configuration
|
# Font configuration
|
||||||
font_family Hack Nerd Font Mono
|
font_family FiraCode Nerd Font Mono
|
||||||
bold_font Hack Nerd Font Mono Bold
|
bold_font FiraCode Nerd Font Mono Bold
|
||||||
italic_font Hack Nerd Font Mono Italic
|
italic_font FiraCode Nerd Font Mono Italic
|
||||||
bold_italic_font Hack Nerd Font Mono Bold Italic
|
bold_italic_font FiraCode Nerd Font Mono Bold Italic
|
||||||
font_size 11.0
|
font_size 11.0
|
||||||
|
# firacode-specific
|
||||||
|
modify_font cell_height -6px
|
||||||
|
modify_font baseline 2
|
||||||
|
|
||||||
sync_to_monitor no
|
sync_to_monitor no
|
||||||
disable_ligatures never
|
# if I'm hovering over the font, don't perform ligature, thanks.
|
||||||
|
disable_ligatures cursor
|
||||||
|
|
||||||
# NO BELLS!
|
# NO BELLS!
|
||||||
enable_audio_bell no
|
enable_audio_bell no
|
||||||
|
|
|
@ -96,6 +96,7 @@ in {
|
||||||
{
|
{
|
||||||
nix-rebuild = "sudo nixos-rebuild switch";
|
nix-rebuild = "sudo nixos-rebuild switch";
|
||||||
hm-switch = "home-manager switch --flake";
|
hm-switch = "home-manager switch --flake";
|
||||||
|
hm-switch-u = "home-manager switch --flake .#$${USER}";
|
||||||
}
|
}
|
||||||
// (cfg.shellAliases or {});
|
// (cfg.shellAliases or {});
|
||||||
history = {
|
history = {
|
||||||
|
|
|
@ -18,9 +18,9 @@ in {
|
||||||
}: {
|
}: {
|
||||||
config.fonts.fontconfig.enable = true;
|
config.fonts.fontconfig.enable = true;
|
||||||
config.home.packages = [
|
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 = {
|
secrets = {
|
||||||
|
@ -75,7 +75,7 @@ in {
|
||||||
enable = true;
|
enable = true;
|
||||||
config-path = "${inputs.self}//native_configs/alacritty/alacritty.yml";
|
config-path = "${inputs.self}//native_configs/alacritty/alacritty.yml";
|
||||||
font.size = 11.0;
|
font.size = 11.0;
|
||||||
font.family = "Hack Nerd Font Mono";
|
font.family = "FiraCode Nerd Font Mono";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -92,7 +92,7 @@ in {
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableCompletion = true;
|
enableCompletion = true;
|
||||||
# enableAutosuggestions = true;
|
enableAutosuggestions = true;
|
||||||
shellAliases =
|
shellAliases =
|
||||||
{
|
{
|
||||||
nix-rebuild = "sudo nixos-rebuild switch";
|
nix-rebuild = "sudo nixos-rebuild switch";
|
||||||
|
|
Loading…
Reference in New Issue