TODO
First, clone this repository. I like to keep it in ~/projects/
.
git clone https://github.com/iggredible/dotfiles.git
While automatic installation is WIP:
- Install the dependencies (
git
,fzf
,ripgrep
,node
) - Remove any existing vimrc and symlink a
.vim
directory todotfiles/vim/
directory
rm -r ~/.vimrc
rm -r ~/.vim
ln -s ~/projects/dotfiles/.vim ~/.vim
If using neovim, create ~/.config/init.vim
. Inside, add:
set runtimepath^=~/.vim runtimepath+=~/.vim/after
let &packpath = &runtimepath
source ~/.vim/vimrc
Some plugins are rarely used and can be omitted. On terminal, run VIM_MODE=lite vim
.
You can also add an alias in .bashrc
/ .zshrc
:
alias vimlite='VIM_MODE=lite vim'
If you've already installed the non-lite plugins, you can uninstall them with :PlugClean!
.
rm .tmux.conf
ln -s ~/projects/dotfiles/.tmux.conf ~/.tmux.conf