diff --git a/plugins/zsh-theme_vercel_light/README.md b/plugins/zsh-theme_vercel_light/README.md new file mode 100644 index 0000000..e9c1f27 --- /dev/null +++ b/plugins/zsh-theme_vercel_light/README.md @@ -0,0 +1,7 @@ +# vercel.zsh-theme + +▲Vercel's `zsh` theme modified for light mode terminals + +

+ +

diff --git a/plugins/zsh-theme_vercel_light/index.ts b/plugins/zsh-theme_vercel_light/index.ts new file mode 100644 index 0000000..9b90bf9 --- /dev/null +++ b/plugins/zsh-theme_vercel_light/index.ts @@ -0,0 +1,24 @@ +const plugin: Fig.Plugin = { + icon: "▲", + name: "zsh-theme_vercel_light", + displayName: "Vercel Zsh Light Theme", + type: "shell", + description: "Yet another zsh theme", + authors: [ + { + name: "Daniel Munoz Gonzalez", + github: "ataricoder", + }, + ], + github: "ataricoder/vercel-zsh-theme", + license: ["MIT"], + shells: ["zsh"], + categories: ["Prompt"], + keywords: ["zsh", "oh-my-zsh", "shell", "hyper", "vercel"], + installation: { + origin: "github", + sourceFiles: ["ataricoder.vercel-zsh-theme"], + }, +}; + +export default plugin;