1
1
Fork 0
Dotfiles!
Go to file
Kenwood c30f2f9185 Update readme 2021-05-30 18:49:15 -04:00
.oh-my-zsh/custom Moved alias definition into oh-my-zsh/custom 2021-05-29 23:34:31 -04:00
.ssh SSH hosts config is important 2021-05-30 18:06:23 -04:00
.DOTFILES_README Add required git clone statements for omzsh plugins. 2021-05-30 02:39:15 -04:00
.gitconfig Updated gitconfig 2021-05-30 18:10:48 -04:00
.gitignore Everybody needs a gitignore 2021-05-29 20:03:39 -04:00
.p10k.zsh This works better, from hydronium 2021-05-30 16:30:07 -04:00
.zshrc Moved alias definition into oh-my-zsh/custom 2021-05-29 23:34:31 -04:00
README.md Update readme 2021-05-30 18:49:15 -04:00

README.md

Clone repo

git clone --bare https://kitsunehosting.net/gitea/Kenwood/dotfiles.git $HOME/.dotfiles

Make a temp alias (will be perminant via .zshrc)

alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'

Pull stuff down!

config checkout

If things offend, backup or delete existing/differeing files.

This could work but idk

config checkout 2>&1 | egrep "\s+\." | awk {'print $1'} | \
xargs -I{} mv {} .config-backup/{}```

# Also use this to keep it all neat!
```config config --local status.showUntrackedFiles no```


# Also, clone all the zsh plugins
# Autocompletions
```git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions```

# Syntax highlighting
```git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting```

# zsh-z
```git clone https://github.com/agkozak/zsh-z $ZSH_CUSTOM/plugins/zsh-z```

# fzf
```git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
~/.fzf/install```