mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
e78cbb2027
Add a simple module for zed-editor, a simple editor written in Rust.
36 lines
823 B
Nix
36 lines
823 B
Nix
# Test custom keymap functionality
|
|
{ config, ... }:
|
|
|
|
{
|
|
programs.zed-editor = {
|
|
enable = true;
|
|
package = config.lib.test.mkStubPackage { };
|
|
userSettings = {
|
|
theme = "XY-Zed";
|
|
features = { copilot = false; };
|
|
vim_mode = false;
|
|
ui_font_size = 16;
|
|
buffer_font_size = 16;
|
|
};
|
|
};
|
|
|
|
nmt.script = let
|
|
expectedContent = builtins.toFile "expected.json" ''
|
|
{
|
|
"auto_install_extensions": {},
|
|
"buffer_font_size": 16,
|
|
"features": {
|
|
"copilot": false
|
|
},
|
|
"theme": "XY-Zed",
|
|
"ui_font_size": 16,
|
|
"vim_mode": false
|
|
}
|
|
'';
|
|
|
|
settingsPath = ".config/zed/settings.json";
|
|
in ''
|
|
assertFileExists "home-files/${settingsPath}"
|
|
assertFileContent "home-files/${settingsPath}" "${expectedContent}"
|
|
'';
|
|
}
|