Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 977 Bytes

README.md

File metadata and controls

45 lines (30 loc) · 977 Bytes

DDVIMRC

My customized configuration file for Vim and Neovim

Installation

  1. Install vim-plug vim-plug. Please follow the installation instructions in the home page vim-plug.

  2. Clone this repository to your home directory.

git clone https://github.com/ddcien/ddvim.git ~/.ddvim
  1. Edit the default configuration files of Vim and Neovim to use this one. This will flush the default configuration files, backup them on your own account.
echo "source ~/.ddvim/init.vim" > ~/.vimrc
echo "source ~/.ddvim/init.vim" > ~/.config/nvim/init.vim
  1. Install the plugins.
vim +PlugInstall

Now it's ready for enjoying.

Update

You can update the repository manually.

cd ~/.ddvim
git pull --rebase

And you can update the plugins manually with the following command.

vim +PlugUpdate