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"
|
"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": {
|
"nixvim": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"flake-parts": "flake-parts",
|
"flake-parts": "flake-parts",
|
||||||
"nixpkgs": "nixpkgs_2",
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
],
|
||||||
"nuschtosSearch": "nuschtosSearch"
|
"nuschtosSearch": "nuschtosSearch"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
|
|
|
@ -35,8 +35,8 @@
|
||||||
nixvim = {
|
nixvim = {
|
||||||
url = "github:nix-community/nixvim";
|
url = "github:nix-community/nixvim";
|
||||||
inputs = {
|
inputs = {
|
||||||
# nixpkgs.follows = "nixpkgs";
|
nixpkgs.follows = "nixpkgs";
|
||||||
home-manager.follows = "home-manager";
|
# home-manager.follows = "home-manager";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
nixneovimplugins = {
|
nixneovimplugins = {
|
||||||
|
|
|
@ -67,8 +67,8 @@ in
|
||||||
# installBatSyntax = true;
|
# installBatSyntax = true;
|
||||||
enableZshIntegration = true;
|
enableZshIntegration = true;
|
||||||
settings = {
|
settings = {
|
||||||
font-family = "Berkeley Mono";
|
font-family = "Maple Mono NF";
|
||||||
font-style = "Retina";
|
font-style = "Medium";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,14 +7,14 @@ let
|
||||||
inherit (pkgs.stdenv.hostPlatform) isLinux;
|
inherit (pkgs.stdenv.hostPlatform) isLinux;
|
||||||
repo_root = "../../..";
|
repo_root = "../../..";
|
||||||
nv_fonts_basic = [
|
nv_fonts_basic = [
|
||||||
"Berkeley Mono"
|
|
||||||
"Maple Mono NF"
|
"Maple Mono NF"
|
||||||
|
"Berkeley Mono"
|
||||||
"Departure Mono"
|
"Departure Mono"
|
||||||
"Fantasque Sans Mono"
|
"Fantasque Sans Mono"
|
||||||
];
|
];
|
||||||
nv_fonts_normal =
|
nv_fonts_normal =
|
||||||
nv_fonts_basic ++ (if isLinux then [ "Noto Color Emoji" ] else [ "Apple Color Emoji" ]);
|
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
|
in
|
||||||
{
|
{
|
||||||
home.file = {
|
home.file = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue