Skip to content

Commit

Permalink
build: add basic project structure
Browse files Browse the repository at this point in the history
Signed-off-by: Ali Sajid Imami <[email protected]>
  • Loading branch information
AliSajid committed Oct 14, 2024
0 parents commit 15c7043
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/plugin/reload.vim
2 changes: 2 additions & 0 deletions README.md
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 added doc/neovim-vivify-markdown.txt
Empty file.
Empty file added doc/tags
Empty file.
Empty file.
5 changes: 5 additions & 0 deletions lua/neovim-vivify-markdown/init.lua
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")
1 change: 1 addition & 0 deletions lua/neovim-vivify-markdown/main.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
local config = require("neovim-vivify-markdown.config")
12 changes: 12 additions & 0 deletions plugin/neovim-vivify-markdown.vim
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

0 comments on commit 15c7043

Please sign in to comment.