mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
feat: add zed
This commit is contained in:
parent
a83620bde8
commit
5bff0db7ee
2 changed files with 31 additions and 0 deletions
30
legacy_modules/apps/zed.nix
Normal file
30
legacy_modules/apps/zed.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{pkgsUnstable, ...}: {
|
||||
fireproof.home-manager.programs.zed-editor = {
|
||||
enable = true;
|
||||
package = pkgsUnstable.zed-editor;
|
||||
extensions = [
|
||||
"basedpyright"
|
||||
"biome"
|
||||
"css-modules-kit"
|
||||
"dockerfile"
|
||||
"env"
|
||||
"fish"
|
||||
"jetbrains-themes"
|
||||
"just-ls"
|
||||
"mcp-server-linear"
|
||||
"nix"
|
||||
];
|
||||
userSettings = {
|
||||
base_keymap = "JetBrains";
|
||||
theme = {
|
||||
mode = "dark";
|
||||
light = "JetBrains Light";
|
||||
dark = "JetBrains Dark";
|
||||
};
|
||||
ui_font_family = "Hack Nerd Font";
|
||||
buffer_font_family = "Hack Nerd Font";
|
||||
buffer_font_size = 13;
|
||||
buffer_line_height = "standard";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue