mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
35 lines
625 B
Nix
35 lines
625 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
programs.neovide = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
fork = false;
|
||
|
frame = "full";
|
||
|
idle = true;
|
||
|
maximized = false;
|
||
|
neovim-bin = "/usr/bin/nvim";
|
||
|
no-multigrid = false;
|
||
|
srgb = false;
|
||
|
tabs = true;
|
||
|
theme = "auto";
|
||
|
title-hidden = true;
|
||
|
vsync = true;
|
||
|
wsl = false;
|
||
|
|
||
|
font = {
|
||
|
normal = [ ];
|
||
|
size = 14.0;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
test.stubs.neovide = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.config/neovide/config.toml
|
||
|
assertFileContent home-files/.config/neovide/config.toml ${./expected.toml}
|
||
|
'';
|
||
|
}
|