Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 831 Bytes

README.md

File metadata and controls

51 lines (36 loc) · 831 Bytes

Create required directories:

mkdir -p ~/.config/nvim
mkdir -p ~/tmp

Create symlinks:

ln -s ~/dotfiles/vim ~/.vim
ln -s ~/dotfiles/vimrc ~/.vim/vimrc
ln -s ~/dotfiles/init.vim ~/.config/nvim/init.vim
ln -s ~/dotfiles/vim/pack ~/.config/nvim/pack
ln -s ~/dotfiles/global-gitignore ~/.gitignore
ln -s ~/dotfiles/globalconfig ~/.gitconfig

Install tools:

RipGrep recursively searches directories

brew install ripgrep

Install FD, an alternative to find

brew install fd

Tree-sitter language parser for syntax highlighting

brew install tree-sitter

Prettierd for Prettier support

brew install fsouza/prettierd/prettierd

Eslint_d for fast linting

yarn global add eslint_d
  • All plugins and scripts are stored in the dotfiles/vim directory.