1
1
Fork 0

Compare commits

...

3 Commits

Author SHA1 Message Date
Kenwood a910474f25 Fixed typo in README setup. 2021-05-29 20:11:55 -04:00
Kenwood b344414b75 Fixed alias in .zshrc 2021-05-29 20:11:31 -04:00
Kenwood 4eebd9f4bf Added in some stuff from hydronium 2021-05-29 20:10:40 -04:00
2 changed files with 17 additions and 3 deletions

View File

@ -2,7 +2,7 @@
git clone --bare https://kitsunehosting.net/gitea/Kenwood/dotfiles.git $HOME/.dotfiles git clone --bare https://kitsunehosting.net/gitea/Kenwood/dotfiles.git $HOME/.dotfiles
# Make a temp alias (will be perminant via .zshrc) # Make a temp alias (will be perminant via .zshrc)
alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME' alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
# Pull stuff down! # Pull stuff down!
config checkout config checkout

18
.zshrc
View File

@ -1,4 +1,5 @@
#Joe added this, uwu! # Joe added this:
#neofetch | lolcat
uwufetch uwufetch
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. # Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
@ -80,7 +81,15 @@ ZSH_THEME="powerlevel10k/powerlevel10k"
# Custom plugins may be added to $ZSH_CUSTOM/plugins/ # Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse) # Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup. # Add wisely, as too many plugins slow down shell startup.
plugins=(git) plugins=(
fzf
git
history-substring-search
colored-man-pages
zsh-autosuggestions
zsh-syntax-highlighting
zsh-z
)
source $ZSH/oh-my-zsh.sh source $ZSH/oh-my-zsh.sh
@ -113,5 +122,10 @@ source $ZSH/oh-my-zsh.sh
# Added this for dotfiles alias, may want to make a custom config folder later. # Added this for dotfiles alias, may want to make a custom config folder later.
alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
export FZF_DEFAULT_COMMAND='fdfind --type f'
export FZF_DEFAULT_OPTS="--layout=reverse --inline-info --height=80%"
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh