No description
| .vimrc | ||
| install.sh | ||
| README.md | ||
Vim Config
Personal Vim configuration and installer for a ready-to-use Vim setup.
The installer sets up:
- vim-plug from the local mirror
- Symlink for
.vimrc - Vim plugins defined in
.vimrc - GitHub plugin clone URLs through
https://gh-proxy.vertsineu.top
Requirements
Install git, vim, and either curl or wget before running the installer.
npx is optional, but recommended for markdown-preview.nvim.
Install
Run the installer directly with sh.
Using curl:
sh -c "$(curl -fsSL https://git.vertsineu.top/vertsineu/vim-config/raw/branch/main/install.sh)"
Using wget:
sh -c "$(wget -qO- https://git.vertsineu.top/vertsineu/vim-config/raw/branch/main/install.sh)"
What It Does
The install script will:
- Check required dependencies.
- Clone this repository to
~/.vim-config. - Link
.vimrcinto your home directory. - Install
vim-plugto~/.vim/autoload/plug.vim. - Run
PlugInstall --syncto install Vim plugins.
Existing .vimrc files are backed up before being replaced.
After Installation
Open Vim:
vim
If a plugin install fails, re-run the installer or run this manually inside Vim:
:PlugInstall
Update
Re-run the same install command to update vim-config, vim-plug, and Vim plugins.