Thanks to visit codestin.com
Credit goes to github.com

Skip to content

nook1208/vimrc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 

Repository files navigation

Vimrc Setup Guide

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

3. Set up Bundle

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim  
vim +PluginInstall +qall  

4. Install ripgrep

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

7. Install rust and toolchain

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

About

my vimrc file

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published