mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
7923c69152
Neovide is a simple, no-nonsense, cross-platform graphical user interface for Neovim See <https://neovide.dev/>. Used ruff's module as reference during creation.
34 lines
625 B
Nix
34 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}
|
|
'';
|
|
}
|