From 04e6788a9dfe2ee0550cd6e4fdd20a348d2c7cf2 Mon Sep 17 00:00:00 2001 From: KenwoodFox Date: Thu, 17 Jun 2021 18:11:50 +0100 Subject: [PATCH 1/3] Update readme with missing bits --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 0080be8..5f85c83 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,16 @@ config config --local status.showUntrackedFiles no # Also, clone all the zsh plugins +# Install omzsh! +``` +sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" +``` + +# p10k +``` +git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k +``` + # Autocompletions ``` git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions From 8777394f78664afa44036c005e508c4bfd1c3980 Mon Sep 17 00:00:00 2001 From: KenwoodFox Date: Fri, 18 Jun 2021 16:20:02 -0400 Subject: [PATCH 2/3] Make zshrc functional on bsd + linux --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 7e24a5d..40bcc31 100644 --- a/.zshrc +++ b/.zshrc @@ -12,7 +12,7 @@ fi # export PATH=$HOME/bin:/usr/local/bin:$PATH # Path to your oh-my-zsh installation. -export ZSH="/home/joe/.oh-my-zsh" +export ZSH="$HOME/.oh-my-zsh" # Set name of the theme to load --- if set to "random", it will # load a random theme each time oh-my-zsh is loaded, in which case, From e46005a572a4317a9b5b005f80361beb39de98e5 Mon Sep 17 00:00:00 2001 From: KenwoodFox Date: Fri, 18 Jun 2021 16:21:51 -0400 Subject: [PATCH 3/3] git may not be installed in alias dir on bsd unix --- .oh-my-zsh/custom/custom_alias.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.oh-my-zsh/custom/custom_alias.zsh b/.oh-my-zsh/custom/custom_alias.zsh index f8ac471..a4f4f55 100644 --- a/.oh-my-zsh/custom/custom_alias.zsh +++ b/.oh-my-zsh/custom/custom_alias.zsh @@ -1,5 +1,5 @@ # This line allows the word 'custom' to specify the dotfiles bare git repo -alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' +alias config='git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' # Alias 'fucking' to 'sudo' cuz of this meme https://www.memesmonkey.com/topic/linux#&gid=1&pid=10 alias fucking=sudo