An open API service indexing awesome lists of open source software.

https://github.com/ckunte/markdown-snippets-vim

Markdown UltiSnips snippets for use in Vim and Neovim
https://github.com/ckunte/markdown-snippets-vim

blog html markdown neovim snippets vim

Last synced: about 2 months ago
JSON representation

Markdown UltiSnips snippets for use in Vim and Neovim

Awesome Lists containing this project

README

          

# Markdown snippets for Vim and Neovim

This repository contains a couple of snippets (used for a blog) that reduces the tedium of adding html blocks to a minimum.

## Requirements

- Vim or Neovim with python3 support
- [UltiSnips]
- [markdown-snippets-vim]

## Installation

Add the following to `.vimrc` file (for vim-plug manager), reload, and install the plug-in (with `:PlugInstall`):

```vim
call plug#begin()

Plug 'sirver/ultisnips'
Plug 'ckunte/markdown-snippets-vim'

call plug#end()

let g:UltiSnipsExpandTrigger = ''
let g:UltiSnipsJumpForwardTrigger = ''
let g:UltiSnipsJumpBackwardTrigger = ''
```
[UltiSnips]: https://github.com/SirVer/ultisnips
[markdown-snippets-vim]: https://github.com/ckunte/markdown-snippets-vim