fix: neovide

This commit is contained in:
2024-05-24 12:45:13 +02:00
parent 1b330bddc1
commit d7ceb1e7be
2 changed files with 20 additions and 21 deletions

View File

@@ -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"
];
};
};
}