Skip to content

Latest commit

 

History

History
54 lines (41 loc) · 1.95 KB

README.md

File metadata and controls

54 lines (41 loc) · 1.95 KB

dotfiles-hyper

my dotfiles using Hyper terminal, oh-my-zsh and vimplug

previous dotfiles are no more mantained !

prerequisites

  • install zsh as the default shell
  • install Hyper

pre-installation steps

  • use the default terminal for installation, not Hyper itself!
  • delete (making backups if you need some special settings to reapply) of any existing ~/.zplug, ~/.vim, ~/.oh-my-zsh, ~/.hyper.js, ~/.vimrc, ~/.zshrc first, and restart the terminal

installation

# clone this repo somewhere
mkdir -p /Users/valerino/repos
cd /Users/valerino/repos
git clone https://github.com/valerino/dotfiles-hyper

install zsh plugins (optional)

# install zsh autocompletion plugin into oh-my-zsh
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions

# install zsh syntax-highlighting plugin into oh-my-zsh
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting

use my provided configurations for zsh, vim, hyper

# symlink my .vimrc
ln -s /Users/valerino/repos/dotfiles-hyper/.vimrc ~/.vimrc

# delete the default .zshrc provided on installation of oh-my-zsh first
rm ~/.zshrc

# symlink my .zshrc (NOTE: *only* if you haven't installed the above zsh plugins, you may edit it first to remove them from oh-my-zsh plugins section)
ln -s /Users/valerino/repos/dotfiles-hyper/.zshrc ~/.zshrc

# symlink my .hyper.js
ln -s /Users/valerino/repos/dotfiles-hyper/.hyper.js ~/.hyper.js

done!

  • restart Hyper, this will install Hyper plugins.
  • vim plugins will be installed once starting vim.
  • profit! :)