cgonzalezbrito / vimrc

VIM and NVIM configuration file

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VIM

I'm learning VIM (neovim)

My VIMRC file will be update according to my learning process. There is a tips file.

Set $VIMCONFIG

$ mkdir -p ~/.vim  
$ export VIMCONFIG=~/.vim/  

Installing MINPAC

$ mkdir -p $VIMCONFIG/pack/minpac/opt  
$ cd $VIMCONFIG/pack/minpac/opt  
$ git clone https://github.com/k-takata/minpac.git  

Installing fzf

$ mkdir -p $VIMCONFIG/pack/bundle/start  
$ cd $VIMCONFIG/pack/bundle/start  
$ git clone https://github.com/junegunn/fzf  
$ $VIMCONFIG/pack/bundle/start/fzf/install --bin  

$ export PATH=$PATH:$VIMCONFIG/pack/bundle/start/fzf/bin  

Installing vim-plug

$ curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

About

VIM and NVIM configuration file


Languages

Language:Vim Script 100.0%