Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions extras/vscode/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# VS Code / Cursor

Command Palette → **Developer: Install Extension from Location…** → this folder.

Reload window. **Color Theme** → `AstroDark` (or AstroLight / AstroMars / AstroJupiter).
Binary file added extras/vscode/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
46 changes: 46 additions & 0 deletions extras/vscode/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "astrotheme",
"displayName": "AstroTheme",
"description": "AstroNvim AstroTheme palettes for VS Code and Cursor (AstroDark, AstroLight, AstroMars, AstroJupiter).",
"version": "0.1.0",
"publisher": "astrotheme",
"icon": "icon.png",
"license": "GPL-3.0-only",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"astrotheme",
"astronvim",
"dark",
"light"
],
"contributes": {
"themes": [
{
"label": "AstroDark",
"uiTheme": "vs-dark",
"path": "./astrodark.json"
},
{
"label": "AstroLight",
"uiTheme": "vs",
"path": "./astrolight.json"
},
{
"label": "AstroMars",
"uiTheme": "vs-dark",
"path": "./astromars.json"
},
{
"label": "AstroJupiter",
"uiTheme": "vs",
"path": "./astrojupiter.json"
}
]
}
}
1 change: 1 addition & 0 deletions lua/astrotheme/extras/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ M.extras = {
tmux = { ext = "tmux", url = "https://github.com/tmux/tmux/wiki", label = "Tmux" },
vim = { ext = "vim", url = "https://vimhelp.org/", label = "Vim", subdir = "colors"},
vimium = { ext = "css", url = "https://vimium.github.io/", label = "Vimium" },
vscode = { ext = "json", url = "https://code.visualstudio.com/", label = "VS Code" },
wezterm = { ext = "toml", url = "https://wezfurlong.org/wezterm/config/files.html", label = "WezTerm" },
windows_terminal = { ext = "json", url = "https://aka.ms/terminal-documentation", label = "Windows Terminal" },
xfceterm = { ext = "theme", url = "https://docs.xfce.org/apps/terminal/advanced", label = "Xfce Terminal" },
Expand Down
Loading
Loading