Compare commits
No commits in common. "f97ed10611d507d7aeed4e3f5f943b7c974b89ca" and "857487416f49ce40a25bc0f10e05a6779c670f98" have entirely different histories.
f97ed10611
...
857487416f
2 changed files with 4 additions and 16 deletions
|
@ -40,6 +40,7 @@ in {
|
||||||
#// "enamippconapkdmgfgjchkhakpfinmaj" # DeArrow
|
#// "enamippconapkdmgfgjchkhakpfinmaj" # DeArrow
|
||||||
"ponfpcnoihfmfllpaingbgckeeldkhle" # Enhancer for YouTube
|
"ponfpcnoihfmfllpaingbgckeeldkhle" # Enhancer for YouTube
|
||||||
#// "fnaicdffflnofjppbagibeoednhnbjhg" # floccus
|
#// "fnaicdffflnofjppbagibeoednhnbjhg" # floccus
|
||||||
|
"aabgbgciohhaogajcnacpgilhmacdahc" # Lazy Tabs
|
||||||
#// "bnomihfieiccainjcjblhegjgglakjdd" # Improve YouTube
|
#// "bnomihfieiccainjcjblhegjgglakjdd" # Improve YouTube
|
||||||
#// "pnjaodmkngahhkoihejjehlcdlnohgmp" # RSS Feed Reader
|
#// "pnjaodmkngahhkoihejjehlcdlnohgmp" # RSS Feed Reader
|
||||||
"kfimphpokifbjgmjflanmfeppcjimgah" # RSS Reader Extension (by Inoreader)
|
"kfimphpokifbjgmjflanmfeppcjimgah" # RSS Reader Extension (by Inoreader)
|
||||||
|
|
|
@ -29,9 +29,9 @@ in {
|
||||||
# https://zed.dev/docs/extensions
|
# https://zed.dev/docs/extensions
|
||||||
# https://github.com/zed-industries/extensions/tree/main/extensions
|
# https://github.com/zed-industries/extensions/tree/main/extensions
|
||||||
extensions = [
|
extensions = [
|
||||||
"basher" # https://github.com/d1y/bash.zed
|
"basher"
|
||||||
"git-firefly" # https://github.com/d1y/git_firefly
|
"git-firefly"
|
||||||
"nix" # https://github.com/zed-extensions/nix
|
"nix"
|
||||||
];
|
];
|
||||||
|
|
||||||
# https://zed.dev/docs/key-bindings
|
# https://zed.dev/docs/key-bindings
|
||||||
|
@ -140,10 +140,6 @@ in {
|
||||||
inline_completion_provider = "none";
|
inline_completion_provider = "none";
|
||||||
};
|
};
|
||||||
|
|
||||||
git = {
|
|
||||||
inline_blame.enabled = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
indent_guides = {
|
indent_guides = {
|
||||||
active_line_width = 2;
|
active_line_width = 2;
|
||||||
};
|
};
|
||||||
|
@ -203,7 +199,6 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# TODO: Add missing syntax in highlights.scm
|
|
||||||
# Theme overrides
|
# Theme overrides
|
||||||
# https://zed.dev/docs/themes#theme-overrides
|
# https://zed.dev/docs/themes#theme-overrides
|
||||||
# https://zed.dev/docs/extensions/languages#syntax-highlighting
|
# https://zed.dev/docs/extensions/languages#syntax-highlighting
|
||||||
|
@ -224,25 +219,19 @@ in {
|
||||||
"scrollbar.thumb.border" = "#00000000";
|
"scrollbar.thumb.border" = "#00000000";
|
||||||
|
|
||||||
syntax = {
|
syntax = {
|
||||||
_expr.color = "#b58900";
|
|
||||||
_id.color = "#93a1a1";
|
|
||||||
attribute.color = "#93a1a1";
|
attribute.color = "#93a1a1";
|
||||||
boolean.color = "#cb4b16";
|
boolean.color = "#cb4b16";
|
||||||
comment.color = "#586e75";
|
comment.color = "#586e75";
|
||||||
"comment.doc".color = "#586e75";
|
"comment.doc".color = "#586e75";
|
||||||
constant.color = "#93a1a1";
|
constant.color = "#93a1a1";
|
||||||
"constant.builtin".color = "#93a1a1";
|
|
||||||
constructor.color = "#b58900";
|
constructor.color = "#b58900";
|
||||||
embedded.color = "#657b83";
|
embedded.color = "#657b83";
|
||||||
emphasis.color = "#93a1a1";
|
emphasis.color = "#93a1a1";
|
||||||
"emphasis.strong".color = "#93a1a1";
|
"emphasis.strong".color = "#93a1a1";
|
||||||
enum.color = "#b58900";
|
enum.color = "#b58900";
|
||||||
function.color = "#268bd2";
|
function.color = "#268bd2";
|
||||||
"function.builtin".color = "#268bd2";
|
|
||||||
"function.call".color = "#268bd2";
|
|
||||||
hint.color = "#657b83";
|
hint.color = "#657b83";
|
||||||
keyword.color = "#d33682";
|
keyword.color = "#d33682";
|
||||||
"keyword.exception".color = "#d33682";
|
|
||||||
label.color = "#93a1a1";
|
label.color = "#93a1a1";
|
||||||
link_text.color = "#93a1a1";
|
link_text.color = "#93a1a1";
|
||||||
link_uri.color = "#93a1a1";
|
link_uri.color = "#93a1a1";
|
||||||
|
@ -268,8 +257,6 @@ in {
|
||||||
title.color = "#93a1a1";
|
title.color = "#93a1a1";
|
||||||
type.color = "#b58900";
|
type.color = "#b58900";
|
||||||
variable.color = "#93a1a1";
|
variable.color = "#93a1a1";
|
||||||
"variable.member".color = "#93a1a1";
|
|
||||||
"variable.parameter".color = "#6c71c4";
|
|
||||||
"variable.special".color = "#93a1a1";
|
"variable.special".color = "#93a1a1";
|
||||||
variant.color = "#93a1a1";
|
variant.color = "#93a1a1";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue