Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Kicamon/markdown-table-mode.nvim
A neovim 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 neovim 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 (7 months ago)
- Default Branch: main
- Last Pushed: 2024-08-19T16:39:34.000Z (3 months ago)
- Last Synced: 2024-08-19T19:47:09.501Z (3 months ago)
- Topics: markdown, nvim, nvim-plugin
- Language: Lua
- Homepage:
- Size: 1.94 MB
- Stars: 32
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-neovim - Kicamon/markdown-table-mode.nvim - Markdown format plugin like vim-table-mode but write in Lua. (Programming Languages Support / Markdown and LaTeX)
- trackawesomelist - Kicamon/markdown-table-mode.nvim (⭐5) - Markdown format plugin like vim-table-mode but write in Lua. (Recently Updated / [Jul 16, 2024](/content/2024/07/16/README.md))
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
},
})
```