Skip to content

mitul45/dotfiles

Repository files navigation

dotfiles

collection of dotfiles

init.vim

  1. Install Neovim
  2. Install vim-plug
  3. Clone this repo, and link ~/.config/nvim/init.vim to init.vim
    ln -s ~/git/dotfiles/init.vim ~/.config/nvim/init.vim
    
  4. Open Neovim (nvim) and run :PlugInstall
  5. Install coc plugins: :CocInstall coc-tsserver coc-eslint coc-json coc-prettier coc-css
  6. Link coc-settings.json
    ln -s ~/git/dotfiles/coc-settings.json ~/.vim/coc-settings.json
    
  7. Install fzf and ag
  8. If you see "requires python" error, install pip3 install neovim

.zshrc

  1. Install zsh
  2. Set zsh as default shell - chsh -s $(which zsh) (you might need to logoff, and login again to see it in action)
  3. Link file
    $ ln -s ~/git/dotfiles/zshrc ~/.zshrc