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
- Host: GitHub
- URL: https://github.com/ckunte/markdown-snippets-vim
- Owner: ckunte
- Created: 2024-11-25T15:06:55.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-02T01:57:12.000Z (over 1 year ago)
- Last Synced: 2025-03-15T05:17:41.914Z (over 1 year ago)
- Topics: blog, html, markdown, neovim, snippets, vim
- Language: Vim Snippet
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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