From c7404a811f7ed3554a3b5d9a241d83ba0f918062 Mon Sep 17 00:00:00 2001 From: Daniel Munoz Gonzalez Date: Fri, 4 Nov 2022 14:21:03 -0500 Subject: [PATCH] feat: added light version for vercel zsh theme --- plugins/zsh-theme_vercel_light/README.md | 7 +++++++ plugins/zsh-theme_vercel_light/index.ts | 24 ++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 plugins/zsh-theme_vercel_light/README.md create mode 100644 plugins/zsh-theme_vercel_light/index.ts 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;