Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kicamon/markdown-table-mode.nvim
A lightweight markdown format plugin like vim-table-mode but write in lua
https://github.com/kicamon/markdown-table-mode.nvim
markdown nvim nvim-plugin
Last synced: 3 days ago
JSON representation
A lightweight markdown format plugin like vim-table-mode but write in lua
- Host: GitHub
- URL: https://github.com/kicamon/markdown-table-mode.nvim
- Owner: Kicamon
- License: mit
- Created: 2024-03-30T02:54:45.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-10-18T12:33:43.000Z (27 days ago)
- Last Synced: 2024-11-02T10:34:08.587Z (12 days ago)
- Topics: markdown, nvim, nvim-plugin
- Language: Lua
- Homepage:
- Size: 1.94 MB
- Stars: 56
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# markdown-table-mode.nvim
format markdown table under cursor when you leave insert mode or input `|`### Screenshot
![Screenshot](./Screenshot.gif)### Install
**lazy.nvim**```lua
{
'Kicamon/markdown-table-mode.nvim',
config = function()
require('markdown-table-mode').setup()
end
}
```**vim-plug**
```vim script
Plug 'Kicamon/markdown-table-mode.nvim'
lua require('markdown-table-mode').setup()
```### Configuration
defualt config
```lua
require('markdown-table-mode').setup({
filetype = {
'*.md',
},
options = {
insert = true, -- when typeing "|"
insert_leave = true, -- when leaveing insert
},
})
```