/dotfiles

a repository for my dotfiles

Primary LanguageShellMIT LicenseMIT

~/.dotfiles

My personal dotfiles repository, managed by chezmoi.

Installation

  1. Make sure you have zsh and chezmoi installed

    $ which zsh
    /usr/bin/zsh
    $ which chezmoi
    /usr/bin/chezmoi
  2. Install oh-my-zsh

  3. Initialize chezmoi with this repository

    $ chezmoi init https://github.com/scybernaut/dotfiles.git
  4. Preview changes that chezmoi would make to your $HOME

    $ chezmoi diff
  5. Apply the changes

    $ chezmoi apply
  6. Install vim-plug plugin manager

    $ curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
        https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
  7. Install vim plugins

    $ vim +PlugInstall +qall
  8. Start a new zsh shell

    $ zsh