mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 03:26:17 +00:00
fix: neovide
This commit is contained in:
@@ -1,5 +1,24 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = [ pkgs.neovide ];
|
||||
xdg.configFile."neovide/config.toml".source = ./neovide.toml;
|
||||
xdg.configFile."neovide/config.toml".source = (pkgs.formats.toml { }).generate "neovide" {
|
||||
maximized = false;
|
||||
fork = true;
|
||||
font = {
|
||||
normal = [ "FiraCode Nerd Font" ];
|
||||
size = 13;
|
||||
edging = "subpixelantialias";
|
||||
features."FiraCode Nerd Font" = [
|
||||
"+zero"
|
||||
"+onum"
|
||||
"+ss04"
|
||||
"+cv19"
|
||||
"+cv23"
|
||||
"+ss09"
|
||||
"+ss06"
|
||||
"+ss07"
|
||||
"+ss10"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
maximized = false
|
||||
srgb = true
|
||||
|
||||
[font]
|
||||
normal = ["FiraCode Nerd Font"]
|
||||
size = 13
|
||||
edging = "subpixelantialias"
|
||||
|
||||
[font.features]
|
||||
"FiraCode Nerd Font" = [
|
||||
"+zero",
|
||||
"+onum",
|
||||
"+ss04",
|
||||
"+cv19",
|
||||
"+cv23",
|
||||
"+ss09",
|
||||
"+ss06",
|
||||
"+ss07",
|
||||
"+ss10",
|
||||
]
|
||||
Reference in New Issue
Block a user