- toggle term added - langmap added - norg and markdown files wordwrap and linebreak - clipboard image plugin added - dap go added - dressing plugin added - easytables plugin - image viewer plugin added - kanagawa theme added, but disabled - ltex (checks writing correctness) plugin added - markdown preview plugin added - markview plugin added - lsp signature plugin added - neorg plugin added - otter plugin added - pastify plugin added - project nvim plugin added
28 lines
1.4 KiB
Lua
28 lines
1.4 KiB
Lua
-- ╭─────────────────────────────────────────────────────────╮
|
|
-- │ Myzel394/easytables.nvim │
|
|
-- │ plugin for easy work with markdown tables │
|
|
-- │ https://github.com/Myzel394/easytables.nvim │
|
|
-- ╰─────────────────────────────────────────────────────────╯
|
|
-- #### Inserting a new table
|
|
--
|
|
-- Go to the place where you want to insert your table and either call:
|
|
--
|
|
-- * `:EasyTablesCreateNew <width>x<height>` - Creates a new table with `<width>` columns and `<height>` rows
|
|
-- * `:EasyTablesCreateNew <width>` - Creates a square table with the size of `<width>` (eg. `:EasyTablesCreateNew 5` -> Creates a `5x5` table)
|
|
-- * `:EasyTablesCreateNew <width>x` - Creates a table with `<width>` columns and **one** row
|
|
-- * `:EasyTablesCreateNew x<height>` - Creates a table with **one** column and `<height>` rows
|
|
--
|
|
-- #### Editing an existing table
|
|
--
|
|
-- Go to your table (doesn't matter where, can be at a border or inside a cell) and type:
|
|
--
|
|
-- `:EasyTablesImportThisTable`
|
|
return {
|
|
"Myzel394/easytables.nvim",
|
|
config = function()
|
|
require("easytables").setup({
|
|
-- Your configuration comes here
|
|
})
|
|
end,
|
|
}
|