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, ...}: {
|
||||
imports = [./usersettings.nix ./userkeymap.nix];
|
||||
programs.zed-editor = {
|
||||
enable = false;
|
||||
enable = true;
|
||||
package = pkgs.zed-editor.fhsWithPackages (pkgs: [pkgs.zlib pkgs.openssl]);
|
||||
extensions = [
|
||||
# langs
|
||||
"html"
|
||||
"catppuccin"
|
||||
"toml"
|
||||
"git-firefly"
|
||||
"latex"
|
||||
"svelte"
|
||||
"scss"
|
||||
"nix"
|
||||
"nu"
|
||||
"gosum"
|
||||
"scls"
|
||||
|
||||
# misc
|
||||
"env"
|
||||
"discord-presence"
|
||||
"wakatime"
|
||||
"nu"
|
||||
"gosum"
|
||||
|
||||
# themes
|
||||
"catppuccin"
|
||||
"material-icon-theme"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -7,6 +7,10 @@ _: {
|
|||
relative_line_numbers = true;
|
||||
hour_format = "hour24";
|
||||
shell = "nu";
|
||||
theme = {
|
||||
dark = "Catppuccin Mocha (pink)";
|
||||
light = "Catppuccin Mocha (pink)";
|
||||
};
|
||||
tabs = {
|
||||
file_icons = true;
|
||||
git_status = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue