No description
Find a file
2026-05-13 19:55:36 +08:00
.vimrc fix: do not fold when opening markdown 2026-05-13 19:55:36 +08:00
install.sh refactor: check dependencies together 2026-04-30 11:05:03 +08:00
README.md chore: initial commit 2026-04-30 11:00:47 +08:00

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:

  1. Check required dependencies.
  2. Clone this repository to ~/.vim-config.
  3. Link .vimrc into your home directory.
  4. Install vim-plug to ~/.vim/autoload/plug.vim.
  5. Run PlugInstall --sync to 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.