Compare commits
10 Commits
0389ffe2ee
...
5efe72e2d7
| Author | SHA1 | Date | |
|---|---|---|---|
| 5efe72e2d7 | |||
| b1427149c8 | |||
| c50ce4efe8 | |||
| 97d757dcfc | |||
| 8b092ec8be | |||
| 03f30d8e64 | |||
| d0835706d4 | |||
| 90942eae3a | |||
| a18e80c814 | |||
| 5982ea2df0 |
9
README.md
Normal file
9
README.md
Normal file
@@ -0,0 +1,9 @@
|
||||
## Deps
|
||||
|
||||
### Preview docs
|
||||
|
||||
- `fswatch`:
|
||||
- `$ yay -S fswatch`
|
||||
- `$ brew install fswatch`
|
||||
- `surf`: lightweight browser
|
||||
- `# port install surf`
|
||||
90
keymap.json
90
keymap.json
@@ -1,7 +1,7 @@
|
||||
// ╭───────────────────────────────╮
|
||||
// │- Zed editor keys │
|
||||
// │- author: Daniel Heras Quesada │
|
||||
// ╰───────────────────────────────╯
|
||||
// ╭────────────────────────────────╮
|
||||
// │- Zed editor keys -│
|
||||
// │- author: Daniel Heras Quesada -│
|
||||
// ╰────────────────────────────────╯
|
||||
[
|
||||
{
|
||||
"context": "Workspace",
|
||||
@@ -10,20 +10,31 @@
|
||||
"ctrl-l": "workspace::ActivatePaneRight",
|
||||
"ctrl-k": "workspace::ActivatePaneUp",
|
||||
"ctrl-j": "workspace::ActivatePaneDown",
|
||||
"cmd-shift-f": "file_finder::Toggle",
|
||||
"cmd-r": "task::Spawn",
|
||||
"cmd-shift-r": "task::Rerun"
|
||||
"ctrl-shift-f": "file_finder::Toggle",
|
||||
"ctrl-x": "task::Spawn",
|
||||
"ctrl-shift-x": "task::Rerun",
|
||||
"ctrl-p": "projects::OpenRecent"
|
||||
}
|
||||
},
|
||||
{
|
||||
"context": "Editor",
|
||||
"bindings": {
|
||||
// "j k": ["workspace::SendKeystrokes", "escape"]
|
||||
// "j k": ["workspace::SendKeystrokes", "escape"],
|
||||
"ctrl-h": "workspace::ActivatePaneLeft",
|
||||
"ctrl-l": "workspace::ActivatePaneRight",
|
||||
"ctrl-k": "workspace::ActivatePaneUp",
|
||||
"ctrl-j": "workspace::ActivatePaneDown",
|
||||
|
||||
"ctrl-t": "workspace::NewFile",
|
||||
"ctrl-w": "pane::CloseActiveItem",
|
||||
"ctrl-W": "pane::CloseAllItems",
|
||||
"ctrl-n": "workspace::ToggleLeftDock",
|
||||
"ctrl-x": "workspace::ToggleRightDock",
|
||||
|
||||
"ctrl-n": "project_panel::ToggleFocus",
|
||||
"ctrl-a": "outline_panel::ToggleFocus",
|
||||
"ctrl-g": "git_panel::ToggleFocus",
|
||||
|
||||
"ctrl-p": "projects::OpenRecent",
|
||||
"ctrl-x": "task::Spawn",
|
||||
"ctrl-z": "workspace::ToggleBottomDock",
|
||||
"ctrl-m": "workspace::ToggleCenteredLayout",
|
||||
"ctrl-shift-l": "pane::SplitRight",
|
||||
@@ -41,39 +52,72 @@
|
||||
// ]
|
||||
}
|
||||
},
|
||||
{
|
||||
"context": "OutlinePanel",
|
||||
"bindings": {
|
||||
"ctrl-a": "workspace::ToggleLeftDock",
|
||||
"ctrl-n": "project_panel::ToggleFocus",
|
||||
"ctrl-g": "git_panel::ToggleFocus"
|
||||
}
|
||||
},
|
||||
{
|
||||
"context": "ProjectPanel",
|
||||
"bindings": {
|
||||
"ctrl-n": "workspace::ToggleLeftDock"
|
||||
"ctrl-n": "workspace::ToggleLeftDock",
|
||||
"ctrl-a": "outline_panel::ToggleFocus",
|
||||
"ctrl-g": "git_panel::ToggleFocus",
|
||||
"f12": "project_panel::Rename",
|
||||
"shift-enter": "project_panel::OpenWithSystem",
|
||||
"/": "project_panel::NewSearchInDirectory"
|
||||
}
|
||||
},
|
||||
{
|
||||
"context": "GitPanel",
|
||||
"bindings": {
|
||||
"ctrl-g": "workspace::ToggleLeftDock",
|
||||
"ctrl-a": "outline_panel::ToggleFocus",
|
||||
"ctrl-n": "project_panel::ToggleFocus"
|
||||
}
|
||||
},
|
||||
{
|
||||
"context": "ProjectPanel && not_editing",
|
||||
"bindings": {
|
||||
"d": "project_panel::Delete",
|
||||
"c": "project_panel::Copy",
|
||||
"r": "project_panel::Rename",
|
||||
"x": "project_panel::Cut",
|
||||
"y": "workspace::CopyRelativePath",
|
||||
"a": "project_panel::NewFile",
|
||||
"A": "project_panel::NewDirectory"
|
||||
}
|
||||
},
|
||||
{
|
||||
"context": "Editor && (showing_code_actions || showing_completions)",
|
||||
"bindings": {
|
||||
"up": "editor::ContextMenuPrev",
|
||||
"ctrl-p": "editor::ContextMenuPrev",
|
||||
"up": "editor::ContextMenuPrevious",
|
||||
"ctrl-p": "editor::ContextMenuPrevious",
|
||||
"down": "editor::ContextMenuNext",
|
||||
"ctrl-n": "editor::ContextMenuNext",
|
||||
"pageup": "editor::ContextMenuFirst",
|
||||
"pagedown": "editor::ContextMenuLast",
|
||||
"tab": "editor::ContextMenuNext",
|
||||
"shift-tab": "editor::ContextMenuPrev"
|
||||
"shift-tab": "editor::ContextMenuPrevious"
|
||||
}
|
||||
},
|
||||
{
|
||||
"context": "Editor && vim_mode == normal",
|
||||
"bindings": {
|
||||
"shift-tab": "pane::ActivatePreviousItem",
|
||||
"tab": "pane::ActivateNextItem",
|
||||
|
||||
"space a": "outline::Toggle",
|
||||
"space r": "editor::Rename",
|
||||
"space x": "pane::CloseActiveItem",
|
||||
"space X": "pane::CloseAllItems",
|
||||
"space b": "workspace::NewFile",
|
||||
"space f f": "file_finder::Toggle",
|
||||
"space space": "file_finder::Toggle",
|
||||
"shift-tab": "pane::ActivatePrevItem",
|
||||
"tab": "pane::ActivateNextItem",
|
||||
"ctrl-h": "workspace::ActivatePaneLeft",
|
||||
"ctrl-l": "workspace::ActivatePaneRight",
|
||||
"ctrl-k": "workspace::ActivatePaneUp",
|
||||
"ctrl-j": "workspace::ActivatePaneDown"
|
||||
"space g": "git_panel::ToggleFocus",
|
||||
"space f a": "pane::DeploySearch",
|
||||
"space f w": "project_symbols::Toggle",
|
||||
"space space": "file_finder::Toggle"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
||||
@@ -1,30 +1,29 @@
|
||||
// ╭───────────────────────────────╮
|
||||
// │- Zed editor settings │
|
||||
// │- author: Daniel Heras Quesada │
|
||||
// ╰───────────────────────────────╯
|
||||
// ╭────────────────────────────────╮
|
||||
// │- Zed editor settings -│
|
||||
// │- author: Daniel Heras Quesada -│
|
||||
// ╰────────────────────────────────╯
|
||||
{
|
||||
// ╭─────────╮
|
||||
// │ General │
|
||||
// ╰─────────╯
|
||||
"auto_update_extensions": {
|
||||
"flat-theme": false
|
||||
},
|
||||
"auto_update": true,
|
||||
"base_keymap": "VSCode",
|
||||
"restore_on_startup": "last_workspace",
|
||||
"restore_on_startup": "last_session",
|
||||
// ╭─────────╮
|
||||
// │ Styling │
|
||||
// ╰─────────╯
|
||||
"icon_theme": "Bearded Icon Theme",
|
||||
"theme": {
|
||||
"mode": "system",
|
||||
"light": "Zed Legacy: Solarized Light",
|
||||
"dark": "One Dark"
|
||||
},
|
||||
"theme": "Ayu Mirage",
|
||||
"unnecessary_code_fade": 0.2,
|
||||
// ╭──────╮
|
||||
// │ Font │
|
||||
// ╰──────╯
|
||||
"ui_font_size": 14,
|
||||
"ui_font_size": 10.0,
|
||||
"ui_font_family": "JetBrainsMonoNL Nerd Font Mono",
|
||||
"buffer_font_size": 15.0,
|
||||
"buffer_font_size": 10.0,
|
||||
"buffer_font_family": "JetBrainsMonoNL Nerd Font Mono",
|
||||
"buffer_font_weight": 400,
|
||||
"buffer_line_height": "comfortable",
|
||||
@@ -49,8 +48,9 @@
|
||||
"show_commit_summary": true
|
||||
}
|
||||
},
|
||||
"hard_tabs": false,
|
||||
"hard_tabs": true,
|
||||
"hover_popover_enabled": true,
|
||||
"hover_popover_delay": 0,
|
||||
"indent_guides": {
|
||||
"enabled": true,
|
||||
"line_width": 1,
|
||||
@@ -73,7 +73,7 @@
|
||||
"show_completions_on_input": true,
|
||||
"show_whitespaces": "selection",
|
||||
"wrap_guides": [80],
|
||||
"relative_line_numbers": true,
|
||||
"relative_line_numbers": "enabled",
|
||||
"scrollbar": {
|
||||
"show": "auto",
|
||||
"cursors": true,
|
||||
@@ -92,22 +92,20 @@
|
||||
// ╭────────╮
|
||||
// │ Layout │
|
||||
// ╰────────╯
|
||||
"assistant": {
|
||||
"enabled": true,
|
||||
"button": true,
|
||||
"agent": {
|
||||
"enabled": false,
|
||||
"button": false,
|
||||
"dock": "right",
|
||||
"default_width": 640,
|
||||
"default_height": 320,
|
||||
"provider": "openai",
|
||||
"version": "2",
|
||||
"default_model": {
|
||||
"provider": "openai",
|
||||
"model": "gpt-4o"
|
||||
"model": "gpt-4-turbo"
|
||||
}
|
||||
},
|
||||
"centered_layout": {
|
||||
"left_padding": 0.22,
|
||||
"right_padding": 0.22
|
||||
"left_padding": 0.2,
|
||||
"right_padding": 0.2
|
||||
},
|
||||
"collaboration_panel": {
|
||||
"button": false
|
||||
@@ -115,7 +113,31 @@
|
||||
"chat_panel": {
|
||||
"button": "never"
|
||||
},
|
||||
"modal_max_width": "medium",
|
||||
"diagnostics": {
|
||||
"button": true,
|
||||
"include_warnings": true,
|
||||
"inline": {
|
||||
"enabled": true,
|
||||
"update_debounce_ms": 150,
|
||||
"padding": 4,
|
||||
"min_column": 0,
|
||||
"max_severity": null
|
||||
},
|
||||
"cargo": null
|
||||
},
|
||||
"title_bar": {
|
||||
"show_sign_in": false,
|
||||
"show_branch_icon": true,
|
||||
"show_project_items": true,
|
||||
"show_user_picture": true,
|
||||
"show_branch_name": true
|
||||
},
|
||||
"minimap": {
|
||||
"show": "never",
|
||||
"thumb": "always",
|
||||
"thumb_border": "left_open",
|
||||
"current_line_highlight": "all"
|
||||
},
|
||||
"outline_panel": {
|
||||
"button": true,
|
||||
"default_width": 240,
|
||||
@@ -161,6 +183,7 @@
|
||||
"whole_word": false,
|
||||
"case_sensitive": false,
|
||||
"include_ignored": false,
|
||||
"button": true,
|
||||
"regex": true
|
||||
},
|
||||
"tab_bar": {
|
||||
@@ -173,7 +196,7 @@
|
||||
"file_icons": true,
|
||||
"git_status": true,
|
||||
"activate_on_close": "left_neighbour",
|
||||
"always_show_close_button": false
|
||||
"show_close_button": "hover"
|
||||
},
|
||||
"toolbar": {
|
||||
"breadcrumbs": true,
|
||||
@@ -199,9 +222,9 @@
|
||||
"EXAMPLE": "test:dqnid",
|
||||
"BLUEPRINTS_PATHS": "./.blueprints"
|
||||
},
|
||||
"font_family": null,
|
||||
// "font_family": null,
|
||||
"font_features": null,
|
||||
"font_size": 14,
|
||||
"font_size": 10,
|
||||
"line_height": "comfortable",
|
||||
"option_as_meta": true,
|
||||
"button": true,
|
||||
@@ -233,7 +256,8 @@
|
||||
"tab_size": 4
|
||||
},
|
||||
"JavaScript": {
|
||||
"format_on_save": "prettier",
|
||||
"formatter": "prettier",
|
||||
"format_on_save": "on",
|
||||
"tab_size": 2,
|
||||
"preferred_line_length": 65,
|
||||
"code_actions_on_format": {
|
||||
@@ -241,7 +265,8 @@
|
||||
}
|
||||
},
|
||||
"TypeScript": {
|
||||
"format_on_save": "prettier",
|
||||
"formatter": "prettier",
|
||||
"format_on_save": "on",
|
||||
"preferred_line_length": 65,
|
||||
"language_servers": ["typescript-language-server", "!vtsls"],
|
||||
"code_actions_on_format": {
|
||||
@@ -249,7 +274,8 @@
|
||||
}
|
||||
},
|
||||
"TSX": {
|
||||
"format_on_save": "prettier",
|
||||
"formatter": "prettier",
|
||||
"format_on_save": "on",
|
||||
"preferred_line_length": 85,
|
||||
"language_servers": ["typescript-language-server", "!vtsls"],
|
||||
// "formatter": {
|
||||
@@ -261,6 +287,9 @@
|
||||
"code_actions_on_format": {
|
||||
"source.organizeImports": true
|
||||
}
|
||||
},
|
||||
"Python": {
|
||||
"language_servers": ["pylsp", "!basedpyright"]
|
||||
}
|
||||
},
|
||||
"file_types": {
|
||||
|
||||
10
snippets/html.json
Normal file
10
snippets/html.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"Print base": {
|
||||
"prefix": "!html5",
|
||||
"body": [
|
||||
"<!DOCTYPE html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\t\t<title></title>\n\t\t<link href=\"style.css\" rel=\"stylesheet\" />\n\t</head>\n\t<body>\n\t\t<main></main>\n\t\t<script>\n\t\t</script>\n\t</body>\n</html>\n",
|
||||
"$0"
|
||||
],
|
||||
"description": "Creates an html5 template"
|
||||
}
|
||||
}
|
||||
15
snippets/javascript.json
Normal file
15
snippets/javascript.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"Log to console": {
|
||||
"prefix": "console",
|
||||
"body": ["console.info(\"__${1:Place}!\")", "$0"],
|
||||
"description": "Logs to console"
|
||||
},
|
||||
"Create Docstring": {
|
||||
"prefix": "docstring jsdoc",
|
||||
"body": [
|
||||
"/**\n* ${1:Description}\n* @param {${2:Type}} ${3:Name}\n* @returns {${4:Type}} ${5:Name}\n*/",
|
||||
"$0"
|
||||
],
|
||||
"description": "Creates a new JSDoc string"
|
||||
}
|
||||
}
|
||||
12
snippets/plaintext.json
Normal file
12
snippets/plaintext.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
// Each snippet must have a name and body, but the prefix and description are optional.
|
||||
// The prefix is used to trigger the snippet, but when omitted then the name is used.
|
||||
// Use placeholders like $1, $2 or ${1:defaultValue} to define tab stops.
|
||||
// The $0 determines the final cursor position.
|
||||
// Placeholders with the same value are linked.
|
||||
"Log to console": {
|
||||
"prefix": "log",
|
||||
"body": ["console.info(\"Hello, ${1:World}!\")", "$0"],
|
||||
"description": "Logs to console"
|
||||
}
|
||||
}
|
||||
28
snippets/typescript.json
Normal file
28
snippets/typescript.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"Log to console": {
|
||||
"prefix": "console log",
|
||||
"body": ["console.info(\"__${1:Place}\", {${2:Value}})", "$0"],
|
||||
"description": "Logs to console"
|
||||
},
|
||||
"Defines a function": {
|
||||
"prefix": "function",
|
||||
"body": ["function ${1:Name}(${2:args}) {\n\t${3}\n}", "$0"],
|
||||
"description": "Defines a function"
|
||||
},
|
||||
"Defienes a JSX component": {
|
||||
"prefix": "jsx component",
|
||||
"body": [
|
||||
"export function ${1:Name}(${2:args}): React.FC<${3}> {\n\t${4}\n}",
|
||||
"$0"
|
||||
],
|
||||
"description": "Defines a JSX component"
|
||||
},
|
||||
"Create Docstring": {
|
||||
"prefix": "docstring jsdoc",
|
||||
"body": [
|
||||
"/**\n* ${1:Description}\n* @param {${2:Type}} ${3:Name}\n* @returns {${4:Type}} ${5:Name}\n*/",
|
||||
"$0"
|
||||
],
|
||||
"description": "Creates a new JSDoc string"
|
||||
}
|
||||
}
|
||||
50
tasks.json
50
tasks.json
@@ -1,22 +1,10 @@
|
||||
// ╭───────────────────────────────╮
|
||||
// │- Zed editor tasks │
|
||||
// │- author: Daniel Heras Quesada │
|
||||
// ╰───────────────────────────────╯
|
||||
// ╭────────────────────────────────╮
|
||||
// │- Zed editor tasks -│
|
||||
// │- author: Daniel Heras Quesada -│
|
||||
// ╰────────────────────────────────╯
|
||||
[
|
||||
{
|
||||
"label": "Example task",
|
||||
"command": "for i in {1..5}; do echo \"Hello $i/5\"; sleep 1; done",
|
||||
"env": {
|
||||
"foo": "bar"
|
||||
},
|
||||
"use_new_terminal": false,
|
||||
"allow_concurrent_runs": false,
|
||||
"reveal": "always",
|
||||
"hide": "never",
|
||||
"shell": "system"
|
||||
},
|
||||
{
|
||||
"label": "Build migrate",
|
||||
"label": "🚀 Build migrate",
|
||||
"command": "bash ~/.config/zed/tasks/build-migrate.sh",
|
||||
"use_new_terminal": false,
|
||||
"allow_concurrent_runs": false,
|
||||
@@ -25,15 +13,22 @@
|
||||
"shell": "system"
|
||||
},
|
||||
{
|
||||
"label": "Lazygit",
|
||||
"command": "lazygit",
|
||||
"args": [],
|
||||
"env": {},
|
||||
"use_new_terminal": true,
|
||||
"label": "👚 Commit Stradi",
|
||||
"command": "bash ~/.config/zed/tasks/commit-stradi.sh",
|
||||
"use_new_terminal": false,
|
||||
"allow_concurrent_runs": false,
|
||||
"reveal": "always",
|
||||
"hide": "always",
|
||||
"shell": "system"
|
||||
},
|
||||
{
|
||||
"label": "Blueprints",
|
||||
"label": "😴 Lazygit",
|
||||
"command": "lazygit",
|
||||
"use_new_terminal": false,
|
||||
"allow_concurrent_runs": false
|
||||
},
|
||||
{
|
||||
"label": "🐾 Blueprints",
|
||||
"command": "~/Packages/code-templates/code_templates",
|
||||
"use_new_terminal": true,
|
||||
"allow_concurrent_runs": false,
|
||||
@@ -41,4 +36,13 @@
|
||||
"hide": "never",
|
||||
"shell": "system"
|
||||
}
|
||||
// {
|
||||
// "label": "📝 Preview document",
|
||||
// "command": "bash ~/.config/zed/tasks/preview-doc.sh '$ZED_FILE'",
|
||||
// "use_new_terminal": true,
|
||||
// "allow_concurrent_runs": false,
|
||||
// "reveal": "always",
|
||||
// "hide": "never",
|
||||
// "shell": "system"
|
||||
// }
|
||||
]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
:broom: │ 🧹 │ clean, cleanup, remove
|
||||
:recycle: │ ♻️ │ recycle, actor
|
||||
:wrench : │ 🔧 │ adjustment, rection, adapter
|
||||
:wrench: │ 🔧 │ adjustment, rection, adapter
|
||||
:gear: │ ⚙️ │ adjustment
|
||||
:control_knobs: │ 🎛 │ config, adjustment
|
||||
:bug: │ 🐛 │ bug
|
||||
@@ -22,3 +22,6 @@
|
||||
:mag_right: │ 🔎 │ search
|
||||
:old_key: │ 🗝 │ dentials
|
||||
:rocket: │ 🚀 │ shipping
|
||||
:stopwatch: │ ⏱ │ speed, performance
|
||||
:wheelchair: │ ♿️ │ accessibility, a11y
|
||||
:globe_with_meridians: | 🌐 | intl, i18n, i10n, tradus, lang
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
emoji="$(cat ~/.config/zed/tasks/assets/emoji_list.txt | fzf | awk -F' ' '{print $1}')"
|
||||
emoji="$(cat ~/.config/zed/tasks/assets/emoji_list.txt | fzf | awk -F' ' '{print $3}')"
|
||||
|
||||
branch="$(git branch --show-current | awk -F'/' '{print $2}')"
|
||||
|
||||
|
||||
4
tasks/preview-doc.sh
Executable file
4
tasks/preview-doc.sh
Executable file
@@ -0,0 +1,4 @@
|
||||
[[ $# -ne 1 ]] && exit 1;
|
||||
FILE_NAME="md_preview_intex.html"
|
||||
fswatch -0 "$1" | pandoc -f markdown $1 > $FILE_NAME && surf $FILE_NAME
|
||||
rm $FILE_NAME
|
||||
430
themes/repose-dark.json
Normal file
430
themes/repose-dark.json
Normal file
@@ -0,0 +1,430 @@
|
||||
{
|
||||
// BG: #212325
|
||||
// BG head
|
||||
// BG tab-alt
|
||||
// TERTIARY/ BORDER: #2f3338
|
||||
// MAIN / FG: #d6d2bc
|
||||
// PALID FG: #d6d2bc
|
||||
// SECONDARY : #8f8e84
|
||||
// BG_CLEAR: #403d39
|
||||
// ERROR: #c43c53
|
||||
// HIGHLIGHT: #e76f51
|
||||
// CURRENT: #52796f
|
||||
// HL1: #355070
|
||||
// HL2: #6d597a
|
||||
// HL3: #eaac8b
|
||||
// HL4: #b56576
|
||||
// HL5: #e56b6f
|
||||
// HL6: #eff6e0
|
||||
// HL7: #ede0d4
|
||||
// HL8: #598392
|
||||
// HL9: #e0b1cb
|
||||
"$schema": "https://zed.dev/schema/themes/v0.2.0.json",
|
||||
"name": "Repose",
|
||||
"author": "Daniel Heras Quesada",
|
||||
"themes": [
|
||||
{
|
||||
"name": "Repose dark",
|
||||
"appearance": "dark",
|
||||
"style": {
|
||||
"border": "#414141",
|
||||
"border.variant": "#403d39ff",
|
||||
"border.focused": "#598392ff",
|
||||
"border.selected": "#355070ff",
|
||||
"border.transparent": "#00000000",
|
||||
"border.disabled": "#414754ff",
|
||||
"elevated_surface.background": "#212325ff",
|
||||
"surface.background": "#212325ff",
|
||||
"background": "#212325ff",
|
||||
"element.background": "#2f3338ff",
|
||||
"element.hover": "#2f3338ff",
|
||||
"element.active": "#403d39ff",
|
||||
"element.selected": "#403d39ff",
|
||||
"element.disabled": "#2f3338ff",
|
||||
"drop_target.background": "#8f8e8480",
|
||||
"ghost_element.background": "#00000000",
|
||||
"ghost_element.hover": "#2f3338ff",
|
||||
"ghost_element.active": "#403d39ff",
|
||||
"ghost_element.selected": "#403d39ff",
|
||||
"ghost_element.disabled": "#2f3338ff",
|
||||
"text": "#5f5e54",
|
||||
"text.muted": "#8f8e84",
|
||||
"text.placeholder": "#7a796f",
|
||||
"text.disabled": "#7a796f",
|
||||
"text.accent": "#52796fff",
|
||||
"icon": "#d6d2bcff",
|
||||
"icon.muted": "#d6d2bcff",
|
||||
"icon.disabled": "#8f8e84ff",
|
||||
"icon.placeholder": "#d6d2bcff",
|
||||
"icon.accent": "#52796fff",
|
||||
"status_bar.background": "#d6d2bcff",
|
||||
"title_bar.background": "#d6d2bcff",
|
||||
"status_bar.foreground": "#212325ff",
|
||||
"title_bar.foreground": "#212325ff",
|
||||
"title_bar.inactive_background": "#2f3338ff",
|
||||
"toolbar.background": "#2f3338ff",
|
||||
"tab_bar.background": "#2f3338ff",
|
||||
"tab.inactive_background": "#2f3338aa",
|
||||
"tab.active_background": "#2f3338ff",
|
||||
"search.match_background": "#403d3966",
|
||||
"panel.background": "#d6d2bc",
|
||||
"panel.focused_border": null,
|
||||
"pane.focused_border": null,
|
||||
"scrollbar.thumb.background": "#8f8e844c",
|
||||
"scrollbar.thumb.hover_background": "#d6d2bcfa",
|
||||
"scrollbar.thumb.border": "#2f3338ff",
|
||||
"scrollbar.track.background": "#00000000",
|
||||
"scrollbar.track.border": "#2f3338ff",
|
||||
"editor.foreground": "#d6d2bcff",
|
||||
"editor.background": "#2f3338ff",
|
||||
"editor.gutter.background": "#2f3338ff",
|
||||
"editor.subheader.background": "#212325ff",
|
||||
"editor.active_line.background": "#d6d2bc09",
|
||||
"editor.highlighted_line.background": "#212325ff",
|
||||
"editor.line_number": "#8f8e84",
|
||||
"editor.active_line_number": "#d6d2bc",
|
||||
"editor.hover_line_number": "#d6d2bc",
|
||||
"editor.invisible": "#8f8e84ff",
|
||||
"editor.wrap_guide": "#403d390d",
|
||||
"editor.active_wrap_guide": "#403d391a",
|
||||
"editor.document_highlight.read_background": "#74ade81a",
|
||||
"editor.document_highlight.write_background": "#21232566",
|
||||
"terminal.background": "#2f3338ff",
|
||||
"terminal.foreground": "#d6d2bcff",
|
||||
"terminal.bright_foreground": "#d6d2bcff",
|
||||
"terminal.dim_foreground": "#2f3338ff",
|
||||
"terminal.ansi.black": "#2f3338ff",
|
||||
"terminal.ansi.bright_black": "#525561ff",
|
||||
"terminal.ansi.dim_black": "#8f8e84ff",
|
||||
"terminal.ansi.red": "#b56576ff",
|
||||
"terminal.ansi.bright_red": "#673a3cff",
|
||||
"terminal.ansi.dim_red": "#e56b6fff",
|
||||
"terminal.ansi.green": "#52796fff",
|
||||
"terminal.ansi.bright_green": "#598392ff",
|
||||
"terminal.ansi.dim_green": "#d1e0bfff",
|
||||
"terminal.ansi.yellow": "#eaac8bff",
|
||||
"terminal.ansi.bright_yellow": "#e5c07bff",
|
||||
"terminal.ansi.dim_yellow": "#eaac8bff",
|
||||
"terminal.ansi.blue": "#52796fff",
|
||||
"terminal.ansi.bright_blue": "#355070ff",
|
||||
"terminal.ansi.dim_blue": "#355070ff",
|
||||
"terminal.ansi.magenta": "#6d597aff",
|
||||
"terminal.ansi.bright_magenta": "#e0b1cbff",
|
||||
"terminal.ansi.dim_magenta": "#6d597aff",
|
||||
"terminal.ansi.cyan": "#598392ff",
|
||||
"terminal.ansi.bright_cyan": "#598392ff",
|
||||
"terminal.ansi.dim_cyan": "#598392ff",
|
||||
"terminal.ansi.white": "#d6d2bcff",
|
||||
"terminal.ansi.bright_white": "#d6d2bcff",
|
||||
"terminal.ansi.dim_white": "#8f8e84ff",
|
||||
"link_text.hover": "#52796fff",
|
||||
"version_control.added": "#52796eff",
|
||||
"version_control.modified": "#eaac8cff",
|
||||
"version_control.deleted": "#b56576ff",
|
||||
"version_control.conflict_marker.ours": "#52796f1a",
|
||||
"version_control.conflict_marker.theirs": "#74ade81a",
|
||||
"conflict": "#eaac8bff",
|
||||
"conflict.background": "#eaac8b1a",
|
||||
"conflict.border": "#5d4c2fff",
|
||||
"created": "#52796fff",
|
||||
"created.background": "#52796f1a",
|
||||
"created.border": "#38482fff",
|
||||
"deleted": "#b56576ff",
|
||||
"deleted.background": "#b565761a",
|
||||
"deleted.border": "#4c2b2cff",
|
||||
"error": "#b56576ff",
|
||||
"error.background": "#b565761a",
|
||||
"error.border": "#4c2b2cff",
|
||||
"hidden": "#8f8e84ff",
|
||||
"hidden.background": "#696b771a",
|
||||
"hidden.border": "#414754ff",
|
||||
"hint": "#788ca6ff",
|
||||
"hint.background": "#5a6f891a",
|
||||
"hint.border": "#355070ff",
|
||||
"ignored": "#8f8e84ff",
|
||||
"ignored.background": "#696b771a",
|
||||
"ignored.border": "#2f3338",
|
||||
"info": "#52796fff",
|
||||
"info.background": "#74ade81a",
|
||||
"info.border": "#355070ff",
|
||||
"modified": "#eaac8bff",
|
||||
"modified.background": "#eaac8b1a",
|
||||
"modified.border": "#5d4c2fff",
|
||||
"predictive": "#5a6a87ff",
|
||||
"predictive.background": "#5a6a871a",
|
||||
"predictive.border": "#38482fff",
|
||||
"renamed": "#52796fff",
|
||||
"renamed.background": "#74ade81a",
|
||||
"renamed.border": "#355070ff",
|
||||
"success": "#52796fff",
|
||||
"success.background": "#52796f1a",
|
||||
"success.border": "#38482fff",
|
||||
"unreachable": "#d6d2bcff",
|
||||
"unreachable.background": "#8389941a",
|
||||
"unreachable.border": "#2f3338",
|
||||
"warning": "#eaac8bff",
|
||||
"warning.background": "#eaac8b1a",
|
||||
"warning.border": "#5d4c2fff",
|
||||
"players": [
|
||||
{
|
||||
"cursor": "#52796fff",
|
||||
"background": "#52796fff",
|
||||
"selection": "#74ade83d"
|
||||
},
|
||||
{
|
||||
"cursor": "#be5046ff",
|
||||
"background": "#be5046ff",
|
||||
"selection": "#be50463d"
|
||||
},
|
||||
{
|
||||
"cursor": "#bf956aff",
|
||||
"background": "#bf956aff",
|
||||
"selection": "#bf956a3d"
|
||||
},
|
||||
{
|
||||
"cursor": "#6d597aff",
|
||||
"background": "#6d597aff",
|
||||
"selection": "#6d597a3d"
|
||||
},
|
||||
{
|
||||
"cursor": "#598392ff",
|
||||
"background": "#598392ff",
|
||||
"selection": "#5983923d"
|
||||
},
|
||||
{
|
||||
"cursor": "#b56576ff",
|
||||
"background": "#b56576ff",
|
||||
"selection": "#b565763d"
|
||||
},
|
||||
{
|
||||
"cursor": "#eaac8bff",
|
||||
"background": "#eaac8bff",
|
||||
"selection": "#eaac8b3d"
|
||||
},
|
||||
{
|
||||
"cursor": "#52796fff",
|
||||
"background": "#52796fff",
|
||||
"selection": "#52796f3d"
|
||||
}
|
||||
],
|
||||
"syntax": {
|
||||
"attribute": {
|
||||
"color": "#52796fff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"boolean": {
|
||||
"color": "#bf956aff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"comment": {
|
||||
"color": "#5d636fff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"comment.doc": {
|
||||
"color": "#878e98ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"constant": {
|
||||
"color": "#dfc184ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"constructor": {
|
||||
"color": "#73ade9ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"embedded": {
|
||||
"color": "#d6d2bcff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"emphasis": {
|
||||
"color": "#52796fff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"emphasis.strong": {
|
||||
"color": "#bf956aff",
|
||||
"font_style": null,
|
||||
"font_weight": 700
|
||||
},
|
||||
"enum": {
|
||||
"color": "#b56576ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"function": {
|
||||
"color": "#73ade9ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"hint": {
|
||||
"color": "#788ca6ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"keyword": {
|
||||
"color": "#6d597aff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"label": {
|
||||
"color": "#52796fff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"link_text": {
|
||||
"color": "#73ade9ff",
|
||||
"font_style": "normal",
|
||||
"font_weight": null
|
||||
},
|
||||
"link_uri": {
|
||||
"color": "#598392ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"namespace": {
|
||||
"color": "#d6d2bcff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"number": {
|
||||
"color": "#bf956aff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"operator": {
|
||||
"color": "#598392ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"predictive": {
|
||||
"color": "#5a6a87ff",
|
||||
"font_style": "italic",
|
||||
"font_weight": null
|
||||
},
|
||||
"preproc": {
|
||||
"color": "#d6d2bcff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"primary": {
|
||||
"color": "#d6d2bcff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"property": {
|
||||
"color": "#b56576ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"punctuation": {
|
||||
"color": "#d6d2bcff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"punctuation.bracket": {
|
||||
"color": "#b2b9c6ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"punctuation.delimiter": {
|
||||
"color": "#b2b9c6ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"punctuation.list_marker": {
|
||||
"color": "#b56576ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"punctuation.markup": {
|
||||
"color": "#b56576ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"punctuation.special": {
|
||||
"color": "#b1574bff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"selector": {
|
||||
"color": "#dfc184ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"selector.pseudo": {
|
||||
"color": "#52796fff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"string": {
|
||||
"color": "#52796fff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"string.escape": {
|
||||
"color": "#878e98ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"string.regex": {
|
||||
"color": "#bf956aff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"string.special": {
|
||||
"color": "#bf956aff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"string.special.symbol": {
|
||||
"color": "#bf956aff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"tag": {
|
||||
"color": "#52796fff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"text.literal": {
|
||||
"color": "#52796fff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"title": {
|
||||
"color": "#b56576ff",
|
||||
"font_style": null,
|
||||
"font_weight": 400
|
||||
},
|
||||
"type": {
|
||||
"color": "#598392ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"variable": {
|
||||
"color": "#d6d2bcff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"variable.special": {
|
||||
"color": "#bf956aff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"variant": {
|
||||
"color": "#73ade9ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user