A collection of my dotfiles for both servers and clients.
To use the zsh dotfiles, you must first install zsh and oh-my-zsh.
Copy zsh files to your home directory:
cp -R .zshrc ~
cp -R .oh-my-zsh ~
This ~/.zshrc
requires the following theme and plugins, which are not included with oh-my-zsh:
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
git clone git://github.com/zdharma/history-search-multi-word.git ~/.oh-my-zsh/custom/plugins/history-search-multi-word
git clone git://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
git clone git://github.com/zsh-users/zsh-autosuggestions.git ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
These plugins are used to bring fish-like behavior to zsh.
If you don't like this behavior, these can be disabled in .zshrc
by commenting out the following:
AUTOSUGGESTION="true"
ENHANCED_COMPLETION="true"
You should also remove zsh-syntax-highlighting zsh-autosuggestions
from the plugin list if you decide to go this route.
Uses screen-like binds and a nice looking theme.
cp -R .tmux* ~
More informative clean theme.
cp -R .screenrc ~
Requires vundle for plugins (NERDtree, tabman).
cp -R .vim* ~
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
vim +PluginInstall +qall
MIT