From f326006425514fbb46f474d26995b01c2f09ef33 Mon Sep 17 00:00:00 2001 From: Janno Tjarks Date: Fri, 14 Jun 2024 08:37:45 +0200 Subject: [PATCH] Adds README file with installation steps --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..24c0738 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# Catppuccin for zsh + +## Installation +``` sh +git clone https://github.com/JannoTjarks/catppuccin-zsh.git +mkdir ~/.oh-my-zsh/themes/catppuccin-flavors + +ln catppuccin-zsh/catppuccin.zsh-theme ~/.oh-my-zsh/themes/ +ln catppuccin-zsh/catppuccin-flavors/* ~/.oh-my-zsh/themes/catppuccin-flavors +``` + +## Setup +Add the following lines to you zsh configuration: +``` sh +ZSH_THEME="catppuccin" +CATPPUCCIN_FLAVOR="mocha" # Required! Options: mocha, flappe, macchiato, latte +CATPPUCCIN_SHOW_TIME=true # Optional! If set to true, this will add the current time to the prompt. +```