From 6b6844ed010a6c8aaa095b3b9ed171c75a5ea319 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerardo=20Marx=20Ch=C3=A1vez-Campos?= Date: Fri, 9 Apr 2021 18:33:33 +0000 Subject: [PATCH] Update 'README.md' --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c405c30..15ac1af 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,15 @@ # vim-config-beagle -The Vim editor can be configured for a basic or advnaced usage. This first approximation is a medium term configuration that enables number lines, syntax on and spell-check options on. Also, some plug-ins are installed to work with `org` files and some kind of File-Explorer Tree (NerdTree) by using the Vim-Plug Framework +The Vim editor can be configured for a basic or advnaced usage. This first approximation is a medium term configuration that enables number lines, syntax on and spell-check options on. Also, some plug-ins are installed to work with `org` files and some kind of File-Explorer Tree (NerdTree) by using the Vim-Plug Framework. Thus, first let's install the Vim-Plug first. +## Installing the Vim-Plug +To install the Vim-Plug(for details check [Vim-Plug-Web](https://github.com/junegunn/vim-plug)), paste the next on terminal + +``` +curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ + https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim +``` +## The `.vimrc` file +The contents of the file is shown next: ``` " General set number " Show line numbers @@ -35,10 +44,11 @@ cab Q q call plug#begin() " NerdTree Plug 'preservim/NERDTree' -Plug 'tpope/vim-speeddating' +Plug 'tpope/vim-speeddating' Plug ' jceb/vim-orgmode' call plug#end() ``` +paste it on the `.vimrc` file, if it does not exist, create it at `~/.vimrc`. After save the file run on Vim editor `Plug #