switch back to Maple, plus neovide changes
This commit is contained in:
parent
a5168b87dd
commit
257d53e993
4 changed files with 9 additions and 23 deletions
20
nix/home-manager/flake.lock
generated
20
nix/home-manager/flake.lock
generated
|
@ -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": {
|
||||
|
|
|
@ -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 = {
|
||||
|
|
|
@ -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";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -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 = {
|
||||
|
|
Loading…
Add table
Reference in a new issue