-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ali Sajid Imami <[email protected]>
- Loading branch information
0 parents
commit 15c7043
Showing
8 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/plugin/reload.vim |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
## neovim-vivify-markdown | ||
This is the README for neovim-vivify-markdown |
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--[[ this module exposes the interface of lua functions: | ||
define here the lua functions that activate the plugin ]] | ||
|
||
local main = require("neovim-vivify-markdown.main") | ||
local config = require("neovim-vivify-markdown.config") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
local config = require("neovim-vivify-markdown.config") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
if exists('g:loaded_neovim-vivify-markdown') | finish | endif | ||
|
||
" expose vim commands and interface here | ||
" nnoremap <Plug>PlugCommand :lua require(...).plug_command()<CR> | ||
|
||
let s:save_cpo = &cpo | ||
set cpo&vim | ||
|
||
let g:loaded_neovim-vivify-markdown = 1 | ||
|
||
let &cpo = s:save_cpo | ||
unlet s:save_cpo |