Vim tourist

Install

1sudo apt purge vim-tiny vim-common -y && sudo apt install vim
2sudo dnf remove vim-tiny vim-common -y && sudo dnf install vim
3brew install vim
4vimtutor
5#basic vim tourist help you quick operator vim

config your vim file

1#use rogerogers's vimrc
2git clone [email protected]:rogerogers/vimrc.git
 1#!/usr/bin/env sh
 2set -ex
 3
 4git clone --depth=1 https://github.com/amix/vimrc.git ~/.vim_runtime
 5sh ~/.vim_runtime/install_awesome_vimrc.sh
 6
 7#aimx's custom config position
 8ln -s $(pwd)/my_configs.vim $HOME/.vim_runtime/my_configs.vim
 9
10#use vim-plug add some other plug
11curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
12    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

happy vim