1. Make Symbolic link
ln -n <Absolute path to vimrc in this repo> ~/.vimrc
e.g) ln -n ~/git/vimrc/vimrc ~/.vimrc
2. Check the cilpboard support in your vim
vim --version | grep clipboard
If you don't have clipboard support in your vim, then :
sudo apt update && sudo apt install vim-gtk -y
2-1. Get latest version of vim
Also you can get latest version of vim like this:
sudo add-apt-repository ppa:jonathonf/vim
sudo apt update
sudo apt install vim
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
vim +PluginInstall +qall
curl -LO https://github.com/BurntSushi/ripgrep/releases/download/12.1.1/ripgrep_12.1.1_amd64.deb
sudo dpkg -i ripgrep_12.1.1_amd64.deb
5. Set up fzf
cd ~/.vim/bundle/fzf
./install
6. Setup Korean
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source $HOME/.cargo/env
// If you don't have compiler toolchain, install gcc toolchain:
sudo apt install build-essential
cargo install cargo-binutils rustfilt
8. Setup rust-analyzer
Type this in your vim :
vim <anything>
:CocInstall coc-rust-analyzer