Browse Source

Update 'README.md'

master
parent
commit
6b6844ed01
1 changed files with 12 additions and 2 deletions
  1. +12
    -2
      README.md

+ 12
- 2
README.md View File

@ -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
#


Loading…
Cancel
Save