mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06: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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -15,6 +15,7 @@
|
||||||
./apps/spotify.nix
|
./apps/spotify.nix
|
||||||
./apps/firefox.nix
|
./apps/firefox.nix
|
||||||
./apps/chromium.nix
|
./apps/chromium.nix
|
||||||
|
./apps/zed.nix
|
||||||
./apps/ghostty.nix
|
./apps/ghostty.nix
|
||||||
./apps/slack.nix
|
./apps/slack.nix
|
||||||
./apps/obsidian.nix
|
./apps/obsidian.nix
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue