This commit is contained in:
commit
d648575024
|
@ -1,5 +1,5 @@
|
||||||
# This line allows the word 'custom' to specify the dotfiles bare git repo
|
# 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' to 'sudo' cuz of this meme https://www.memesmonkey.com/topic/linux#&gid=1&pid=10
|
||||||
alias fucking=sudo
|
alias fucking=sudo
|
||||||
|
|
2
.zshrc
2
.zshrc
|
@ -12,7 +12,7 @@ fi
|
||||||
# export PATH=$HOME/bin:/usr/local/bin:$PATH
|
# export PATH=$HOME/bin:/usr/local/bin:$PATH
|
||||||
|
|
||||||
# Path to your oh-my-zsh installation.
|
# 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
|
# 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,
|
# load a random theme each time oh-my-zsh is loaded, in which case,
|
||||||
|
|
10
README.md
10
README.md
|
@ -22,6 +22,16 @@ config config --local status.showUntrackedFiles no
|
||||||
|
|
||||||
|
|
||||||
# Also, clone all the zsh plugins
|
# 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
|
# Autocompletions
|
||||||
```
|
```
|
||||||
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
|
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
|
||||||
|
|
Loading…
Reference in New Issue