switch back to Maple, plus neovide changes

This commit is contained in:
Anthony Cicchetti 2025-03-24 09:29:46 -04:00
parent a5168b87dd
commit 257d53e993
4 changed files with 9 additions and 23 deletions

View file

@ -277,26 +277,12 @@
"type": "github"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1742606399,
"narHash": "sha256-NAxwF5cjgh8o5aylhePXWNQETCWYaTpNvdO2bMfINpQ=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "0740f6f238767d4caf9afe774d3e88105766dfc6",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixvim": {
"inputs": {
"flake-parts": "flake-parts",
"nixpkgs": "nixpkgs_2",
"nixpkgs": [
"nixpkgs"
],
"nuschtosSearch": "nuschtosSearch"
},
"locked": {

View file

@ -35,8 +35,8 @@
nixvim = {
url = "github:nix-community/nixvim";
inputs = {
# nixpkgs.follows = "nixpkgs";
home-manager.follows = "home-manager";
nixpkgs.follows = "nixpkgs";
# home-manager.follows = "home-manager";
};
};
nixneovimplugins = {

View file

@ -67,8 +67,8 @@ in
# installBatSyntax = true;
enableZshIntegration = true;
settings = {
font-family = "Berkeley Mono";
font-style = "Retina";
font-family = "Maple Mono NF";
font-style = "Medium";
};
};

View file

@ -7,14 +7,14 @@ let
inherit (pkgs.stdenv.hostPlatform) isLinux;
repo_root = "../../..";
nv_fonts_basic = [
"Berkeley Mono"
"Maple Mono NF"
"Berkeley Mono"
"Departure Mono"
"Fantasque Sans Mono"
];
nv_fonts_normal =
nv_fonts_basic ++ (if isLinux then [ "Noto Color Emoji" ] else [ "Apple Color Emoji" ]);
nv_fonts_italic = [ "Dank Mono" ] ++ nv_fonts_basic;
nv_fonts_italic = nv_fonts_basic;
in
{
home.file = {