Gerardo Marx a83c9acc3a | 2 years ago | |
---|---|---|
.vimrc | 2 years ago | |
Readme.md | 2 years ago |
This repository includes the basic configuration file for VIM.
First we need to install the Vim plugin manager to easily add and remove packages into vim editor. Thus, let us add the plugin.vim
:
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Add a vim-plug section to your ~/.vimrc
file:
Plug
commandsplug#end()
to update &runtimepath
and initialize plugin system
filetype plugin indent on and syntax enable
. You can revert the settings after the call. e.g. filetype indent off
, syntax off
, etc.call plug#begin()
" The default plugin directory will be as follows:
" - Vim (Linux/macOS): '~/.vim/plugged'
" - Vim (Windows): '~/vimfiles/plugged'
" - Neovim (Linux/macOS/Windows): stdpath('data') . '/plugged'
" You can specify a custom plugin directory by passing it as the argument
" - e.g. `call plug#begin('~/.vim/plugged')`
" - Avoid using standard Vim directory names like 'plugin'
" Make sure you use single quotes
" Any valid git URL is allowed
Plug 'https://github.com/junegunn/vim-github-dashboard.git'
" On-demand loading
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
" Initialize plugin system
call plug#end()
For a better understanding on how to use the Vim Plugin manager visit the git webpage.
.vimrc
fileNext you will see the contents of the vimrc
file in this repository:
after copy and paste, or added the require code call the plug installer by entering on command mode in Vim (pressing Esc
key), then, call :PlugInstall
to update and install the new Plugins.