nvim-typora
nvim-typora copied to clipboard
Bindings for Typora's Markdown in Neovim
NOTE: this repository has been archived— I don't use Typora anymore. I discovered that it is not free software, and have transitioned elsewhere.
Introduction
nvim-typora
is a plugin that aims to provide improved functionality with Typora and its enhanced markdown features.
It is not meant to replace existing markdown plugins, only enhance their functionality with specific additions for Typora.
Features
This plugin is still a work in progress. That said, it is in a good state for others to begin getting use out of it:
- Basic
mermaid
snippets- [x] Class Diagrams
- [x] Entity Relationship Diagrams
- [x] Gantt
- [x] Graphs
- [x] Pie Charts
- [x] Sequence Diagrams
- [x] State Diagrams
- [x] User Journey Diagrams
- Basic Markdown snippets
- [x] Code Blocks
- [x] LaTeX Blocks
- [x] Tables
- [x] Manipulating columns
- [x] Initial generation
- [x] Links to helpful documentation from
:help
.
Demo
This is a demo of most of the features. TableMode
can do more than is shown, and there are more ways to access these features than through :execute
-ing commands. Read the docs for more information.
- The theme in the demo is nvim-highlite.
Installation & Requirements
Requires the following:
- Neovim 0.5+
- Typora
-
nvim-libmodal
- Snippet functionality with
:TyporaMode
. - Table manipulation with
:TableMode
.
- Snippet functionality with
Optionally requires the following:
-
vim-markdown
- Automatic table formatting.
You can install it like any other plugin. Here is an example which uses vim-plug
:
Plug 'Iron-E/nvim-libmodal'
Plug 'Iron-E/nvim-typora'
Plug 'plasticboy/vim-markdown'