diff --git a/nvim/lazy-lock.json b/nvim/lazy-lock.json index 2fdb109..01019d3 100644 --- a/nvim/lazy-lock.json +++ b/nvim/lazy-lock.json @@ -1,27 +1,28 @@ { "barbar.nvim": { "branch": "master", "commit": "53b5a2f34b68875898f0531032fbf090e3952ad7" }, - "blink.cmp": { "branch": "main", "commit": "022521a8910a5543b0251b21c9e1a1e989745796" }, + "blink.cmp": { "branch": "main", "commit": "9bcb14b43852a6f2bfd5ac9ef29cb5cf09b1b39b" }, "catppuccin": { "branch": "main", "commit": "fa42eb5e26819ef58884257d5ae95dd0552b9a66" }, "conform.nvim": { "branch": "master", "commit": "8132ec733eed3bf415b97b76797ca41b59f51d7d" }, + "dropbar.nvim": { "branch": "master", "commit": "b695c346fd180d504c1d135435cbcfba08ad3946" }, "fidget.nvim": { "branch": "main", "commit": "d9ba6b7bfe29b3119a610892af67602641da778e" }, - "gitsigns.nvim": { "branch": "main", "commit": "731b581428ec6c1ccb451b95190ebbc6d7006db7" }, + "gitsigns.nvim": { "branch": "main", "commit": "1b0350ab707713b2bc6c236151f1a324175347b1" }, "lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" }, "lazydev.nvim": { "branch": "main", "commit": "2367a6c0a01eb9edb0464731cc0fb61ed9ab9d2c" }, - "lazygit.nvim": { "branch": "main", "commit": "b9eae3badab982e71abab96d3ee1d258f0c07961" }, + "lazygit.nvim": { "branch": "main", "commit": "4839ab642962cc76bb1bf278427dc4c59be15072" }, "lualine.nvim": { "branch": "master", "commit": "a94fc68960665e54408fe37dcf573193c4ce82c9" }, - "mason-lspconfig.nvim": { "branch": "main", "commit": "bef29b653ba71d442816bf56286c2a686210be04" }, + "mason-lspconfig.nvim": { "branch": "main", "commit": "c4c84f4521d62de595c0d0f718a9a40c1890c8ce" }, "mason-tool-installer.nvim": { "branch": "main", "commit": "93a9ff9b34c91c0cb0f7de8d5f7e4abce51d8903" }, "mason.nvim": { "branch": "main", "commit": "8024d64e1330b86044fed4c8494ef3dcd483a67c" }, - "mini.nvim": { "branch": "main", "commit": "35e1767f4cd7dde51256eabae7349a5283a43cba" }, + "mini.nvim": { "branch": "main", "commit": "01dce72f2177de6044bcab60ebb8f8e56ade0936" }, "neo-tree.nvim": { "branch": "main", "commit": "7bc06b5efc5554d10f73a8aa508e02c03a83c2a0" }, "nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" }, "nvim-autopairs": { "branch": "master", "commit": "2647cce4cb64fb35c212146663384e05ae126bdf" }, - "nvim-lspconfig": { "branch": "master", "commit": "77d3fdfb3554632c7a3b101ded643d422de7626f" }, - "nvim-notify": { "branch": "master", "commit": "b5825cf9ee881dd8e43309c93374ed5b87b7a896" }, + "nvim-lspconfig": { "branch": "master", "commit": "2d0ca00368742c0c7af802b9b2a920c4cd02303a" }, + "nvim-notify": { "branch": "master", "commit": "a22f5d7ac511c2df2fd3290a9f04c48d5a822e2e" }, "nvim-surround": { "branch": "main", "commit": "8dd9150ca7eae5683660ea20cec86edcd5ca4046" }, "nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" }, - "nvim-treesitter-textobjects": { "branch": "master", "commit": "0f051e9813a36481f48ca1f833897210dbcfffde" }, - "nvim-web-devicons": { "branch": "master", "commit": "1fb58cca9aebbc4fd32b086cb413548ce132c127" }, + "nvim-treesitter-textobjects": { "branch": "master", "commit": "89ebe73cd2836db80a22d9748999ace0241917a5" }, + "nvim-web-devicons": { "branch": "master", "commit": "19d6211c78169e78bab372b585b6fb17ad974e82" }, "plenary.nvim": { "branch": "master", "commit": "857c5ac632080dba10aae49dba902ce3abf91b35" }, "telescope-fzf-native.nvim": { "branch": "main", "commit": "1f08ed60cafc8f6168b72b80be2b2ea149813e55" }, "telescope-ui-select.nvim": { "branch": "master", "commit": "6e51d7da30bd139a6950adf2a47fda6df9fa06d2" }, diff --git a/nvim/lua/config/lazy/50-colorscheme.lua b/nvim/lua/config/lazy/00-colorscheme.lua similarity index 91% rename from nvim/lua/config/lazy/50-colorscheme.lua rename to nvim/lua/config/lazy/00-colorscheme.lua index 9127fd8..a94948e 100644 --- a/nvim/lua/config/lazy/50-colorscheme.lua +++ b/nvim/lua/config/lazy/00-colorscheme.lua @@ -24,6 +24,10 @@ return { enabled = true, }, treesitter = true, + dropbar = { + enabled = true, + color_mode = false, + }, native_lsp = { enabled = true, inlay_hints = { diff --git a/nvim/lua/config/lazy/43-winbar.lua b/nvim/lua/config/lazy/43-winbar.lua new file mode 100644 index 0000000..ced2e16 --- /dev/null +++ b/nvim/lua/config/lazy/43-winbar.lua @@ -0,0 +1,7 @@ +return { + "Bekaboo/dropbar.nvim", + dependencies = { + "nvim-telescope/telescope-fzf-native.nvim", + build = "make", + }, +} diff --git a/nvim/lua/config/lazy/21-statusline.lua b/nvim/lua/config/lazy/44-statusline.lua similarity index 50% rename from nvim/lua/config/lazy/21-statusline.lua rename to nvim/lua/config/lazy/44-statusline.lua index f157579..5f7d59e 100644 --- a/nvim/lua/config/lazy/21-statusline.lua +++ b/nvim/lua/config/lazy/44-statusline.lua @@ -5,8 +5,23 @@ return { opts = { extensions = { "neo-tree", "lazy", "toggleterm" }, options = { + theme = "catppuccin", section_separators = { left = "", right = "" }, component_separators = { left = "", right = "" }, }, + sections = { + lualine_b = { + "branch", + { "diff", symbols = { added = "", modified = "", removed = "" } }, + "diagnostics", + }, + lualine_c = { + { "filename", path = 1, shorting_target = 10 }, + }, + lualine_x = { + "filetype", + "lsp_status", + }, + }, }, } diff --git a/zed/prompts/prompts-library-db.0.mdb/lock.mdb b/zed/prompts/prompts-library-db.0.mdb/lock.mdb index 224c579..e287136 100644 Binary files a/zed/prompts/prompts-library-db.0.mdb/lock.mdb and b/zed/prompts/prompts-library-db.0.mdb/lock.mdb differ diff --git a/zed/settings.json b/zed/settings.json index 2042477..f22db6c 100644 --- a/zed/settings.json +++ b/zed/settings.json @@ -13,6 +13,7 @@ "auto_install_extensions": { "html": true, "toml": true, + "catppuccin": true, "catppuccin-icons": true, "dockerfile": true, "git-firefly": true, diff --git a/zed/themes/tomorrow.json b/zed/themes/tomorrow.json deleted file mode 100644 index 4f42eaa..0000000 --- a/zed/themes/tomorrow.json +++ /dev/null @@ -1,1148 +0,0 @@ -{ - "$schema": "https://zed.dev/schema/themes/v0.2.0.json", - "name": "tomorrow", - "author": "blaqat", - "themes": [ - { - "appearance": "dark", - "name": "Tomorrow Night", - "style": { - "accents": [ - "#81A2BE", - "#B294BB", - "#B5BD68", - "#FF9DA4", - "#F0C674", - "#8ABEB7", - "#CCC", - "#FF7882", - "#81A2BE", - "#B294BB", - "#B5BD68", - "#F0C674" - ], - "background": "#1E1F21", - "border.disabled": null, - "border.focused": "#1C1D1F", - "border.selected": null, - "border.transparent": null, - "border.variant": "#1C1D1F", - "conflict": "#FF5B69", - "conflict.background": null, - "conflict.border": "#FF5B69", - "created": "#B5BD68", - "created.background": null, - "created.border": null, - "deleted": "#C66", - "deleted.background": "#FF78822E", - "deleted.border": null, - "drop_target.background": null, - "editor.active_line.background": "#373B4180", - "editor.active_line_number": "#FFF", - "editor.active_wrap_guide": null, - "editor.background": "#1E1F21", - "editor.document_highlight.bracket_background": "#81A2BE40", - "editor.document_highlight.read_background": "#81A2BE2E", - "editor.document_highlight.write_background": null, - "editor.foreground": "#C5C8C6", - "editor.gutter.background": "#1E1F21", - "editor.highlighted_line.background": null, - "editor.indent_guide": "none", - "editor.indent_guide_active": "#F0C67480", - "editor.invisible": null, - "editor.line_number": null, - "editor.subheader.background": "#17181A50", - "editor.wrap_guide": null, - "element.active": null, - "element.background": null, - "element.disabled": null, - "element.hover": "#4D505740", - "element.selected": "#373B41C0", - "elevated_surface.background": "#17181A", - "error": "#C66", - "error.background": "#1E1F21", - "error.border": "#C66", - "ghost_element.active": null, - "ghost_element.background": null, - "ghost_element.disabled": null, - "ghost_element.hover": "#282A2E50", - "ghost_element.selected": "#282A2E", - "hidden": "#63666E", - "hidden.border": null, - "hint": "#63666E", - "hint.background": "#1E1F21", - "hint.border": "#81A2BE", - "icon": null, - "icon.accent": null, - "icon.disabled": null, - "icon.muted": null, - "icon.placeholder": null, - "ignored": "#4D5057", - "ignored.background": null, - "ignored.border": null, - "info": "#81A2BE", - "info.background": "#81A2BE2E", - "info.border": "#81A2BE", - "link_text.hover": null, - "modified": "#F0C674", - "modified.background": null, - "modified.border": null, - "pane.focused_border": null, - "panel.background": "#17181A", - "panel.focused_border": null, - "players": [ - { - "background": "#373B41", - "cursor": "#8ABEB7", - "selection": "#373B41C0" - }, - { - "background": null, - "cursor": null, - "selection": null - } - ], - "predictive": "#7C7C7C", - "predictive.border": null, - "renamed": null, - "renamed.background": null, - "renamed.border": null, - "scrollbar.thumb.background": "#27292CC0", - "scrollbar.thumb.border": "#1D1F21C0", - "scrollbar.thumb.hover_background": null, - "scrollbar.track.background": "#1D1F21C0", - "scrollbar.track.border": "#1D1F2100", - "search.match_background": "#F0C6743E", - "status_bar.background": "#17181A", - "success": "#B5BD68", - "success.background": null, - "success.border": null, - "surface.background": null, - "syntax": { - "boolean": { - "color": "#DE935F", - "font_style": null, - "font_weight": null - }, - "comment": { - "color": "#969896", - "font_style": null, - "font_weight": null - }, - "constant": { - "color": "#DE935F", - "font_style": null, - "font_weight": null - }, - "constant.builtin": { - "color": "#DE935F", - "font_style": null, - "font_weight": null - }, - "function": { - "color": "#85B7B1", - "font_style": null, - "font_weight": null - }, - "keyword": { - "color": "#B294BB", - "font_style": null, - "font_weight": null - }, - "lifetime": { - "color": "#81A2BE", - "font_style": null, - "font_weight": null - }, - "method": { - "color": "#85B7B1" - }, - "number": { - "color": "#DE935F", - "font_style": null, - "font_weight": null - }, - "property": { - "color": null, - "font_style": null, - "font_weight": null - }, - "punctuation.list_marker": { - "color": "#DE935F", - "font_style": null, - "font_weight": null - }, - "string": { - "color": "#B5BD68", - "font_style": null, - "font_weight": null - }, - "tag": { - "color": "#92B2CA", - "font_style": null, - "font_weight": null - }, - "title": { - "color": "#B294BB", - "font_style": null, - "font_weight": null - }, - "type": { - "color": "#DE935F", - "font_style": null, - "font_weight": null - } - }, - "tab.active_background": "#1C1D1F", - "tab.inactive_background": "#17181A", - "tab_bar.background": "#17181A", - "terminal.ansi.black": "#000", - "terminal.ansi.blue": "#81A2BE", - "terminal.ansi.bright_black": "#FFFFFF40", - "terminal.ansi.bright_blue": "#7094B2", - "terminal.ansi.bright_cyan": "#7BB2AA", - "terminal.ansi.bright_green": "#AAB257", - "terminal.ansi.bright_magenta": "#A383AD", - "terminal.ansi.bright_red": "#FF5B69", - "terminal.ansi.bright_white": "#F2F2F2", - "terminal.ansi.bright_yellow": "#EAB85B", - "terminal.ansi.cyan": "#8ABEB7", - "terminal.ansi.dim_black": "#000", - "terminal.ansi.dim_blue": null, - "terminal.ansi.dim_cyan": null, - "terminal.ansi.dim_green": null, - "terminal.ansi.dim_magenta": null, - "terminal.ansi.dim_red": null, - "terminal.ansi.dim_white": "#FFF", - "terminal.ansi.dim_yellow": null, - "terminal.ansi.green": "#B5BD68", - "terminal.ansi.magenta": "#B294BB", - "terminal.ansi.red": "#FF9DA4", - "terminal.ansi.white": "#CCC", - "terminal.ansi.yellow": "#F0C674", - "terminal.background": "#1E1F21", - "terminal.bright_foreground": "#FFF", - "terminal.dim_foreground": "#FFF", - "terminal.foreground": "#FFF", - "text": "#C5C8C6", - "text.accent": "#F0C674", - "text.disabled": "#565960", - "text.muted": "#FFFFFF8F", - "text.placeholder": "#FFFFFF50", - "title_bar.background": "#17181A", - "toolbar.background": "#1C1D1F", - "unreachable": null, - "unreachable.border": null, - "warning": "#F0C674", - "warning.background": "#1E1F21", - "warning.border": "#F0C674" - } - }, - { - "appearance": "light", - "name": "Tomorrow", - "style": { - "accents": [ - "#5286BC", - "#9C71B7", - "#849B00", - "#FF9DA4", - "#F0C674", - "#4BA9AF", - "#505050", - "#FF7882", - "#5286BC", - "#9C71B7", - "#849B00", - "#F0C674" - ], - "background": "#FFF", - "border.disabled": null, - "border.focused": "#F2F2F2", - "border.selected": null, - "border.transparent": null, - "border.variant": "#F2F2F2", - "conflict": "#A34141", - "conflict.background": null, - "conflict.border": "#A34141", - "created": "#849B00", - "created.background": null, - "created.border": null, - "deleted": "#D43E36", - "deleted.background": "#FF78823E", - "deleted.border": null, - "drop_target.background": null, - "editor.active_line.background": "#F2F2F2", - "editor.active_line_number": null, - "editor.active_wrap_guide": null, - "editor.background": "#FFF", - "editor.document_highlight.bracket_background": "#5286BC50", - "editor.document_highlight.read_background": null, - "editor.document_highlight.write_background": null, - "editor.foreground": "#60605F", - "editor.gutter.background": "#FFF", - "editor.highlighted_line.background": null, - "editor.indent_guide": "#00000050", - "editor.indent_guide_active": "#5286BC80", - "editor.invisible": null, - "editor.line_number": null, - "editor.subheader.background": "#F2F2F2", - "editor.wrap_guide": null, - "element.active": null, - "element.background": null, - "element.disabled": null, - "element.hover": "#FFF", - "element.selected": "#DEDEDEC0", - "elevated_surface.background": "#F2F2F2", - "error": "#D43E36", - "error.background": "#EAC5C3", - "error.border": "#D43E36", - "ghost_element.active": null, - "ghost_element.background": null, - "ghost_element.disabled": null, - "ghost_element.hover": "#60605F1F", - "ghost_element.selected": "#5286BC1F", - "hidden": "#63666E", - "hidden.border": null, - "hint": "#63666E", - "hint.background": "#5286BC50", - "hint.border": "#5286BC", - "icon": null, - "icon.accent": null, - "icon.disabled": null, - "icon.muted": null, - "icon.placeholder": null, - "ignored": "#8C8C8C", - "ignored.background": null, - "ignored.border": null, - "info": "#5286BC", - "info.background": "#5286BC2E", - "info.border": null, - "link_text.hover": null, - "modified": "#5286BC", - "modified.background": null, - "modified.border": null, - "pane.focused_border": null, - "panel.background": "#F2F2F2", - "panel.focused_border": null, - "players": [ - { - "background": "#DEDEDE", - "cursor": "#5286BC", - "selection": "#DEDEDE8F" - }, - { - "background": null, - "cursor": null, - "selection": null - } - ], - "predictive": "#777", - "predictive.border": null, - "renamed": null, - "renamed.background": null, - "renamed.border": null, - "scrollbar.thumb.background": null, - "scrollbar.thumb.border": null, - "scrollbar.thumb.hover_background": null, - "scrollbar.track.background": null, - "scrollbar.track.border": "#F2F2F2", - "search.match_background": "#F0C6748F", - "status_bar.background": "#FAFAFA", - "success": "#849B00", - "success.background": null, - "success.border": null, - "surface.background": null, - "syntax": { - "boolean": { - "color": "#F39929", - "font_style": null, - "font_weight": null - }, - "comment": { - "color": "#9FA19E", - "font_style": null, - "font_weight": null - }, - "constant": { - "color": "#F39929", - "font_style": null, - "font_weight": null - }, - "constant.builtin": { - "color": "#F39929", - "font_style": null, - "font_weight": 600 - }, - "function": { - "color": "#4BA9AF", - "font_style": null, - "font_weight": 600 - }, - "keyword": { - "color": "#9C71B7", - "font_style": null, - "font_weight": 600 - }, - "lifetime": { - "color": "#5286BC", - "font_style": null, - "font_weight": null - }, - "number": { - "color": "#F39929", - "font_style": null, - "font_weight": null - }, - "punctuation.list_marker": { - "color": "#F39929", - "font_style": null, - "font_weight": null - }, - "string": { - "color": "#849B00", - "font_style": null, - "font_weight": null - }, - "tag": { - "color": "#5286BC", - "font_style": null, - "font_weight": null - }, - "title": { - "color": "#9C71B7", - "font_style": null, - "font_weight": 600 - }, - "type": { - "color": "#F39929", - "font_style": null, - "font_weight": 600 - } - }, - "tab.active_background": "#FAFAFA", - "tab.inactive_background": "#F2F2F2", - "tab_bar.background": "#F2F2F2", - "terminal.ansi.black": "#000", - "terminal.ansi.blue": "#47A", - "terminal.ansi.bright_black": "#0000009F", - "terminal.ansi.bright_blue": "#3E6C9B", - "terminal.ansi.bright_cyan": "#3D888C", - "terminal.ansi.bright_green": "#5C6B00", - "terminal.ansi.bright_magenta": "#8456A3", - "terminal.ansi.bright_red": "#A34141", - "terminal.ansi.bright_white": "#383838", - "terminal.ansi.bright_yellow": "#E8B04A", - "terminal.ansi.cyan": "#44979B", - "terminal.ansi.dim_black": "#000", - "terminal.ansi.dim_blue": null, - "terminal.ansi.dim_cyan": null, - "terminal.ansi.dim_green": null, - "terminal.ansi.dim_magenta": null, - "terminal.ansi.dim_red": null, - "terminal.ansi.dim_white": "#383838", - "terminal.ansi.dim_yellow": null, - "terminal.ansi.green": "#6E7F00", - "terminal.ansi.magenta": "#8D61AA", - "terminal.ansi.red": "#BF4444", - "terminal.ansi.white": "#424242", - "terminal.ansi.yellow": "#EAB85B", - "terminal.background": "#FFF", - "terminal.bright_foreground": "#000", - "terminal.dim_foreground": "#000", - "terminal.foreground": "#000", - "text": "#60605F", - "text.accent": "#5286BC", - "text.disabled": "#00000050", - "text.muted": "#00000071", - "text.placeholder": "#00000071", - "title_bar.background": "#F2F2F2", - "toolbar.background": "#F2F2F29F", - "unreachable": null, - "unreachable.border": null, - "warning": "#F0C674", - "warning.background": "#FCD890", - "warning.border": "#F0C674" - } - }, - { - "appearance": "dark", - "name": "Tomorrow Night Out", - "style": { - "accents": [ - "#78AAD7", - "#D7ACD7", - "#A8D3AA", - "#FF9DA4", - "#F7D479", - "#76D4D6", - "#CCC", - "#F48D8C", - "#78AAD7", - "#D7ACD7", - "#A8D3AA", - "#F7D479" - ], - "background": "#3B3B3B", - "border.disabled": null, - "border.focused": "#1C1D1F", - "border.selected": null, - "border.transparent": null, - "border.variant": "#2F2F2F", - "conflict": "#ED7676", - "conflict.background": null, - "conflict.border": "#ED7676", - "created": "#A8D3AA", - "created.background": null, - "created.border": null, - "deleted": "#F48D8C", - "deleted.background": "#F48D8C5F", - "deleted.border": null, - "drop_target.background": null, - "editor.active_line.background": "#494949", - "editor.active_line_number": "#FFF", - "editor.active_wrap_guide": null, - "editor.background": "#3B3B3B", - "editor.document_highlight.read_background": "#76D4D62E", - "editor.document_highlight.write_background": null, - "editor.foreground": "#D5D5D5", - "editor.gutter.background": "#49494980", - "editor.highlighted_line.background": null, - "editor.indent_guide": "none", - "editor.indent_guide_active": "#F7D47980", - "editor.invisible": null, - "editor.line_number": null, - "editor.subheader.background": "#17181A50", - "editor.wrap_guide": null, - "element.active": null, - "element.background": null, - "element.disabled": null, - "element.hover": "#3B3B3B40", - "element.selected": "#545454", - "elevated_surface.background": "#262626", - "error": "#F48D8C", - "error.background": "#2F2F2F", - "error.border": "#F48D8C", - "ghost_element.active": null, - "ghost_element.background": null, - "ghost_element.disabled": null, - "ghost_element.hover": "#6464646E", - "ghost_element.selected": "#64646440", - "hidden": "#63666E", - "hidden.border": null, - "hint": "#696969", - "hint.background": "#2F2F2F", - "hint.border": "#78AAD7", - "icon": null, - "icon.accent": null, - "icon.disabled": null, - "icon.muted": null, - "icon.placeholder": null, - "ignored": "#575757", - "ignored.background": null, - "ignored.border": null, - "info": "#78AAD7", - "info.background": "#78AAD750", - "info.border": null, - "link_text.hover": null, - "modified": "#F7D479", - "modified.background": null, - "modified.border": null, - "pane.focused_border": null, - "panel.background": "#2B2B2B", - "panel.focused_border": null, - "players": [ - { - "background": "#494949", - "cursor": "#9E9E9E", - "selection": "#545454" - }, - { - "background": null, - "cursor": null, - "selection": null - } - ], - "predictive": "#969896", - "predictive.border": null, - "renamed": null, - "renamed.background": null, - "renamed.border": null, - "scrollbar.thumb.background": "#49494980", - "scrollbar.thumb.border": "#2B2B2BC0", - "scrollbar.thumb.hover_background": null, - "scrollbar.track.background": "#2B2B2BC0", - "scrollbar.track.border": "#1D1F2100", - "search.match_background": "#F7D4792E", - "status_bar.background": "#262626", - "success": "#A8D3AA", - "success.background": null, - "success.border": null, - "surface.background": null, - "syntax": { - "boolean": { - "color": "#F4A369", - "font_style": null, - "font_weight": null - }, - "comment": { - "color": "#969896", - "font_style": null, - "font_weight": null - }, - "constant": { - "color": "#F4A369", - "font_style": null, - "font_weight": null - }, - "constant.builtin": { - "color": "#F4A369", - "font_style": null, - "font_weight": null - }, - "function": { - "color": "#76D4D6", - "font_style": null, - "font_weight": null - }, - "keyword": { - "color": "#D7ACD7", - "font_style": null, - "font_weight": null - }, - "number": { - "color": "#F4A369", - "font_style": null, - "font_weight": null - }, - "punctuation.list_marker": { - "color": "#F4A369", - "font_style": null, - "font_weight": null - }, - "string": { - "color": "#A8D3AA", - "font_style": null, - "font_weight": null - }, - "tag": { - "color": "#FFD479", - "font_style": null, - "font_weight": null - }, - "title": { - "color": "#D7ACD7", - "font_style": null, - "font_weight": null - }, - "type": { - "color": "#F4A369", - "font_style": null, - "font_weight": null - } - }, - "tab.active_background": "#3B3B3B", - "tab.inactive_background": "#2F2F2F", - "tab_bar.background": "#2B2B2B", - "terminal.ansi.black": "#000", - "terminal.ansi.blue": "#78AAD7", - "terminal.ansi.bright_black": "#FFFFFF40", - "terminal.ansi.bright_blue": "#639CCE", - "terminal.ansi.bright_cyan": "#66CACC", - "terminal.ansi.bright_green": "#97C698", - "terminal.ansi.bright_magenta": "#C999C9", - "terminal.ansi.bright_red": "#ED7676", - "terminal.ansi.bright_white": "#F2F2F2", - "terminal.ansi.bright_yellow": "#F2C963", - "terminal.ansi.cyan": "#76D4D6", - "terminal.ansi.dim_black": "#000", - "terminal.ansi.dim_blue": null, - "terminal.ansi.dim_cyan": null, - "terminal.ansi.dim_green": null, - "terminal.ansi.dim_magenta": null, - "terminal.ansi.dim_red": null, - "terminal.ansi.dim_white": "#FFF", - "terminal.ansi.dim_yellow": null, - "terminal.ansi.green": "#A8D3AA", - "terminal.ansi.magenta": "#D7ACD7", - "terminal.ansi.red": "#FF9DA4", - "terminal.ansi.white": "#CCC", - "terminal.ansi.yellow": "#F7D479", - "terminal.background": "#3B3B3B", - "terminal.bright_foreground": "#FFF", - "terminal.dim_foreground": "#FFF", - "terminal.foreground": "#FFF", - "text": "#D5D5D5", - "text.accent": "#F7D479", - "text.disabled": "#7C7C7C", - "text.muted": "#FFFFFF8F", - "text.placeholder": "#FFFFFF50", - "title_bar.background": "#262626", - "toolbar.background": "#3B3B3B", - "unreachable": null, - "unreachable.border": null, - "warning": "#F7D479", - "warning.background": "#2F2F2F", - "warning.border": "#F7D479" - } - }, - { - "appearance": "dark", - "name": "Tomorrow Night Blue", - "style": { - "accents": [ - "#80BAFF", - "#EBBBFF", - "#D1F1A9", - "#FF9DA4", - "#FFEEAD", - "#9FF", - "#CCC", - "#FF7882", - "#80BAFF", - "#D778FF", - "#B8F171", - "#FFE580" - ], - "background": "#002451", - "border": "#001733", - "border.disabled": null, - "border.focused": "#BBDAFF", - "border.selected": "#BBDAFF", - "border.transparent": null, - "border.variant": "#001C40", - "conflict": "#FF7882", - "conflict.background": null, - "conflict.border": "#FF7882", - "created": "#74C991", - "created.background": null, - "created.border": null, - "deleted": "#FF9DA4", - "deleted.background": "#FF78823E", - "deleted.border": null, - "drop_target.background": null, - "editor.active_line.background": "#00346E", - "editor.active_line_number": "#FFF", - "editor.active_wrap_guide": null, - "editor.background": "#002451", - "editor.document_highlight.bracket_background": null, - "editor.document_highlight.read_background": "#80BAFF2E", - "editor.document_highlight.write_background": null, - "editor.foreground": "#FF9DA4", - "editor.gutter.background": "#002451", - "editor.highlighted_line.background": null, - "editor.indent_guide": "false", - "editor.indent_guide_active": "#FFC58F80", - "editor.invisible": null, - "editor.line_number": null, - "editor.subheader.background": "#001733", - "editor.wrap_guide": "#001733", - "element.active": "#003B7A50", - "element.background": "#00346E", - "element.disabled": null, - "element.hover": "#FFFFFF2E", - "element.selected": "#0045959F", - "elevated_surface.background": "#001733", - "error": "#FF7882", - "error.background": "#001733", - "error.border": "#FF9DA4", - "ghost_element.active": null, - "ghost_element.background": null, - "ghost_element.disabled": null, - "ghost_element.hover": "#324764", - "ghost_element.selected": "#415570", - "hidden": "#818DA1", - "hidden.border": "#000", - "hint": "#7285B79F", - "hint.background": "#001733", - "hint.border": "#80BAFF", - "icon": null, - "icon.accent": null, - "icon.disabled": null, - "icon.muted": null, - "icon.placeholder": null, - "ignored": "#818DA19F", - "ignored.background": null, - "ignored.border": null, - "info": "#80BAFF", - "info.background": "#80BAFF2E", - "info.border": "#80BAFF", - "link_text.hover": null, - "modified": "#E2C08D", - "modified.background": null, - "modified.border": null, - "pane.focused_border": "#BBDAFF", - "panel.background": "#001C40", - "panel.focused_border": "#BBDAFF", - "players": [ - { - "background": "#00346E", - "cursor": "#FFF", - "selection": "#0045959F" - }, - { - "background": null, - "cursor": null, - "selection": null - } - ], - "predictive": "#53689E", - "predictive.border": null, - "renamed": null, - "renamed.background": null, - "renamed.border": null, - "scrollbar.thumb.background": "#BBDAFF2E", - "scrollbar.thumb.border": "#001C40", - "scrollbar.thumb.hover_background": null, - "scrollbar.track.background": "#002451C0", - "scrollbar.track.border": "#001C40", - "search.match_background": "#533741F0", - "status_bar.background": "#001126", - "success": "#D1F1A9", - "success.background": null, - "success.border": null, - "surface.background": null, - "syntax": { - "boolean": { - "color": "#FFC58F", - "font_style": null, - "font_weight": null - }, - "comment": { - "color": "#7285B7", - "font_style": null, - "font_weight": null - }, - "constant": { - "color": "#FFC58F", - "font_style": null, - "font_weight": null - }, - "constant.builtin": { - "color": "#FFEEAD", - "font_style": null, - "font_weight": null - }, - "function": { - "color": "#BBDAFF", - "font_style": null, - "font_weight": null - }, - "invalid": { - "color": "#A92049" - }, - "keyword": { - "color": "#EBBBFF", - "font_style": null, - "font_weight": null - }, - "number": { - "color": "#FFC58F", - "font_style": null, - "font_weight": null - }, - "parameter": { - "color": "#FFC58F" - }, - "punctuation.list_marker": { - "color": "#FFC58F", - "font_style": null, - "font_weight": null - }, - "storage": { - "color": "#EBBBFF" - }, - "string": { - "color": "#D1F1A9", - "font_style": null, - "font_weight": null - }, - "tag": { - "color": "#FF9DA4", - "font_style": null, - "font_weight": null - }, - "title": { - "color": "#EBBBFF", - "font_style": null, - "font_weight": null - }, - "type": { - "color": "#BBDAFF", - "font_style": null, - "font_weight": null - } - }, - "tab.active_background": "#002451", - "tab.inactive_background": "#001C40", - "tab_bar.background": "#001733", - "terminal.ansi.black": "#000", - "terminal.ansi.blue": "#80BAFF", - "terminal.ansi.bright_black": "#FFFFFF40", - "terminal.ansi.bright_blue": "#80BAFF", - "terminal.ansi.bright_cyan": "#78FFFF", - "terminal.ansi.bright_green": "#B8F171", - "terminal.ansi.bright_magenta": "#D778FF", - "terminal.ansi.bright_red": "#FF7882", - "terminal.ansi.bright_white": "#FFF", - "terminal.ansi.bright_yellow": "#FFE580", - "terminal.ansi.cyan": "#9FF", - "terminal.ansi.dim_black": "#000", - "terminal.ansi.dim_blue": null, - "terminal.ansi.dim_cyan": null, - "terminal.ansi.dim_green": null, - "terminal.ansi.dim_magenta": null, - "terminal.ansi.dim_red": null, - "terminal.ansi.dim_white": "#FFF", - "terminal.ansi.dim_yellow": null, - "terminal.ansi.green": "#D1F1A9", - "terminal.ansi.magenta": "#EBBBFF", - "terminal.ansi.red": "#FF9DA4", - "terminal.ansi.white": "#CCC", - "terminal.ansi.yellow": "#FFEEAD", - "terminal.background": "#002451", - "terminal.bright_foreground": "#FFF", - "terminal.dim_foreground": "#FFF", - "terminal.foreground": "#FFF", - "text": "#FFF", - "text.accent": "#FFC58F", - "text.disabled": "#818DA1", - "text.muted": "#FFFFFFA1", - "text.placeholder": "#818DA1", - "title_bar.background": "#001126", - "toolbar.background": "#002451", - "unreachable": null, - "unreachable.border": "#001C40", - "warning": "#FFEEAD", - "warning.background": "#001733", - "warning.border": "#FFEEAD" - } - }, - { - "appearance": "dark", - "name": "Tomorrow at Midnight", - "style": { - "accents": [ - "#8CB6E2", - "#B294BB", - "#C5D15C", - "#FF9DA4", - "#ECCE59", - "#8ABEB7", - "#CCC", - "#FF7882", - "#8CB6E2", - "#B294BB", - "#C5D15C", - "#ECCE59" - ], - "background": "#000", - "border.disabled": null, - "border.focused": "#000", - "border.selected": null, - "border.transparent": null, - "border.variant": "#303446", - "conflict": "#FF606E", - "conflict.background": null, - "conflict.border": "#FF606E", - "created": "#C5D15C", - "created.background": null, - "created.border": null, - "deleted": "#DF6565", - "deleted.background": "#FF78825F", - "deleted.border": null, - "drop_target.background": null, - "editor.active_line.background": "#3034465F", - "editor.active_line_number": "#FFF", - "editor.active_wrap_guide": null, - "editor.background": "#000", - "editor.document_highlight.bracket_background": "#59607FAE", - "editor.document_highlight.read_background": "#303446AE", - "editor.document_highlight.write_background": "#303446C0", - "editor.foreground": "#EEE", - "editor.gutter.background": "#000", - "editor.highlighted_line.background": "#3034468F", - "editor.indent_guide": "none", - "editor.indent_guide_active": "#ED9E566E", - "editor.invisible": null, - "editor.line_number": null, - "editor.subheader.background": "#30344680", - "editor.wrap_guide": null, - "element.active": "#383C5150", - "element.background": "#30344650", - "element.disabled": null, - "element.hover": "#303446", - "element.selected": "#3034468F", - "elevated_surface.background": "#000", - "error": "#DF6565", - "error.background": "#000", - "error.border": "#DF6565", - "ghost_element.active": null, - "ghost_element.background": null, - "ghost_element.disabled": null, - "ghost_element.hover": "#3034468F", - "ghost_element.selected": "#3034469F", - "hidden": "#63666E", - "hidden.border": null, - "hint": "#3034469F", - "hint.background": "#000", - "hint.border": "#8CB6E2", - "icon": null, - "icon.accent": null, - "icon.disabled": null, - "icon.muted": null, - "icon.placeholder": null, - "ignored": "#4D5057", - "ignored.background": null, - "ignored.border": null, - "info": "#8CB6E2", - "info.background": "#8CB6E22E", - "info.border": "#8CB6E2", - "link_text.hover": null, - "modified": "#ECCE59", - "modified.background": null, - "modified.border": null, - "pane.focused_border": null, - "panel.background": "#000", - "panel.focused_border": null, - "players": [ - { - "background": "#373B41", - "cursor": "#ED9E56", - "selection": "#3034468F" - }, - { - "background": null, - "cursor": null, - "selection": null - } - ], - "predictive": "#7F7F7F", - "predictive.border": null, - "renamed": null, - "renamed.background": null, - "renamed.border": null, - "scrollbar.thumb.background": "#30344650", - "scrollbar.thumb.border": "#8CB6E203", - "scrollbar.thumb.hover_background": null, - "scrollbar.track.background": null, - "scrollbar.track.border": "#8CB6E215", - "search.match_background": "#75BAFF5F", - "status_bar.background": "#000", - "success": "#C5D15C", - "success.background": null, - "success.border": null, - "surface.background": null, - "syntax": { - "boolean": { - "color": "#ED9E56", - "font_style": null, - "font_weight": null - }, - "comment": { - "color": "#A7A8A7", - "font_style": null, - "font_weight": null - }, - "constant": { - "color": "#ED9E56", - "font_style": null, - "font_weight": null - }, - "constant.builtin": { - "color": "#ED9E56", - "font_style": null, - "font_weight": 600 - }, - "function": { - "color": "#80CABF", - "font_style": null, - "font_weight": 600 - }, - "keyword": { - "color": "#B294BB", - "font_style": null, - "font_weight": 600 - }, - "method": { - "color": "#80CABF", - "font_weight": 400 - }, - "number": { - "color": "#ED9E56", - "font_style": null, - "font_weight": null - }, - "punctuation.list_marker": { - "color": "#ED9E56", - "font_style": null, - "font_weight": null - }, - "string": { - "color": "#C5D15C", - "font_style": null, - "font_weight": null - }, - "tag": { - "color": "#8CB6E1", - "font_style": null, - "font_weight": null - }, - "title": { - "color": "#B294BB", - "font_style": null, - "font_weight": 600 - }, - "type": { - "color": "#ED9E56", - "font_style": null, - "font_weight": 600 - } - }, - "tab.active_background": "#000", - "tab.inactive_background": "#000", - "tab_bar.background": "#000", - "terminal.ansi.black": "#000", - "terminal.ansi.blue": "#8CB6E2", - "terminal.ansi.bright_black": "#FFFFFF50", - "terminal.ansi.bright_blue": "#7AABDB", - "terminal.ansi.bright_cyan": "#7CB2AA", - "terminal.ansi.bright_green": "#BAC64F", - "terminal.ansi.bright_magenta": "#A687AF", - "terminal.ansi.bright_red": "#FF606E", - "terminal.ansi.bright_white": "#F4F4F4", - "terminal.ansi.bright_yellow": "#E5C244", - "terminal.ansi.cyan": "#8ABEB7", - "terminal.ansi.dim_black": "#000", - "terminal.ansi.dim_blue": null, - "terminal.ansi.dim_cyan": null, - "terminal.ansi.dim_green": null, - "terminal.ansi.dim_magenta": null, - "terminal.ansi.dim_red": null, - "terminal.ansi.dim_white": "#FFF", - "terminal.ansi.dim_yellow": null, - "terminal.ansi.green": "#C5D15C", - "terminal.ansi.magenta": "#B294BB", - "terminal.ansi.red": "color.lightcoral..(l+2)..s+5", - "terminal.ansi.white": "#CCC", - "terminal.ansi.yellow": "#ECCE59", - "terminal.background": "#000", - "terminal.bright_foreground": "#FFF", - "terminal.dim_foreground": "#FFF", - "terminal.foreground": "#FFF", - "text": "#EEE", - "text.accent": "#ED9E56", - "text.disabled": "#565960", - "text.muted": "#FFFFFF8F", - "text.placeholder": "#FFFFFF50", - "title_bar.background": "#000", - "toolbar.background": "#000", - "unreachable": null, - "unreachable.border": null, - "warning": "#ECCE59", - "warning.background": "#000", - "warning.border": "#ECCE59" - } - } - ] -}