15 lines
191 B
Nix
15 lines
191 B
Nix
{ ... }:
|
|
{
|
|
programs.zed-editor = {
|
|
enable = true;
|
|
extensions = [
|
|
"nix"
|
|
"toml"
|
|
"make"
|
|
"rust"
|
|
];
|
|
userSettings = {
|
|
vim_mode = true;
|
|
};
|
|
};
|
|
}
|