From 8e27827f3ff06a0377284d194ff362de9a67bc09 Mon Sep 17 00:00:00 2001 From: iGor milhit Date: Tue, 16 Apr 2019 15:55:11 +0200 Subject: [PATCH] plugins: markdown-preview.nvim * NEW Removes livedown preview. * NEW Adds markdown-preview.nvim. * NEW Updates the README. Signed-off-by: iGor milhit --- README.md | 6 +----- init.vim | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7990f7f..8806557 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Firstly, I don't use any more `pathogen` for the management of plugins, but `vim 1. `neovim` 2. `git` -3. `nodejs` et `npm` +3. `nodejs`, `yarn` ## Installation @@ -34,8 +34,4 @@ cd $HOME/neovim/colors #or the dir. where you've clone this repository ln -s ../plugged/vim-colors-solarized/colors/solarized.vim solarized.vim ``` -For `vim-livedown`, the `node` `livedown` package needs to be installed globally: - -`npm install -g livedown` - For `InstantRst`, the python package `instant-rst` is needed. See the [documentation](https://github.com/Rykka/InstantRst#1install). diff --git a/init.vim b/init.vim index 58bd2a1..b3df9ad 100644 --- a/init.vim +++ b/init.vim @@ -135,7 +135,7 @@ Plug 'tpope/vim-sensible' Plug 'vim-syntastic/syntastic' Plug 'godlygeek/tabular' Plug 'dhruvasagar/vim-table-mode', { 'on': 'TableModeEnable' } -Plug 'shime/vim-livedown', { 'on': 'LivedownPreview' } +Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app & yarn install' } Plug 'elzr/vim-json' Plug 'osyo-manga/vim-over', { 'on': 'OverCommandLine' } Plug 'Rykka/riv.vim'