zed: update settings
This commit is contained in:
parent
af12a15320
commit
da0b301435
2 changed files with 15 additions and 4 deletions
home/programs/editors/zed
|
@ -1,22 +1,29 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
imports = [./usersettings.nix ./userkeymap.nix];
|
imports = [./usersettings.nix ./userkeymap.nix];
|
||||||
programs.zed-editor = {
|
programs.zed-editor = {
|
||||||
enable = false;
|
enable = true;
|
||||||
package = pkgs.zed-editor.fhsWithPackages (pkgs: [pkgs.zlib pkgs.openssl]);
|
package = pkgs.zed-editor.fhsWithPackages (pkgs: [pkgs.zlib pkgs.openssl]);
|
||||||
extensions = [
|
extensions = [
|
||||||
|
# langs
|
||||||
"html"
|
"html"
|
||||||
"catppuccin"
|
|
||||||
"toml"
|
"toml"
|
||||||
"git-firefly"
|
"git-firefly"
|
||||||
"latex"
|
"latex"
|
||||||
"svelte"
|
"svelte"
|
||||||
"scss"
|
"scss"
|
||||||
"nix"
|
"nix"
|
||||||
|
"nu"
|
||||||
|
"gosum"
|
||||||
|
"scls"
|
||||||
|
|
||||||
|
# misc
|
||||||
"env"
|
"env"
|
||||||
"discord-presence"
|
"discord-presence"
|
||||||
"wakatime"
|
"wakatime"
|
||||||
"nu"
|
|
||||||
"gosum"
|
# themes
|
||||||
|
"catppuccin"
|
||||||
|
"material-icon-theme"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,6 +7,10 @@ _: {
|
||||||
relative_line_numbers = true;
|
relative_line_numbers = true;
|
||||||
hour_format = "hour24";
|
hour_format = "hour24";
|
||||||
shell = "nu";
|
shell = "nu";
|
||||||
|
theme = {
|
||||||
|
dark = "Catppuccin Mocha (pink)";
|
||||||
|
light = "Catppuccin Mocha (pink)";
|
||||||
|
};
|
||||||
tabs = {
|
tabs = {
|
||||||
file_icons = true;
|
file_icons = true;
|
||||||
git_status = true;
|
git_status = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue