Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

md-table-tidy

URL: https://github.com/timantipov/md-table-tidy.nvim/

Maintainers: Pierre Borine


A lightweight Neovim plugin for formatting markdown tables.

plugins.md-table-tidy.enable

Whether to enable md-table-tidy.

Type: boolean

Default:

false

Example:

true

Declared by:

plugins.md-table-tidy.package

The md-table-tidy package to use.

Type: package

Default:

pkgs.vimPlugins.md-table-tidy-nvim

Declared by:

plugins.md-table-tidy.autoLoad

Whether to automatically load md-table-tidy when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example:

false

Declared by:

plugins.md-table-tidy.callSetup

Whether to generate the standard require('md-table-tidy').setup(...) call for this plugin.

Explicitly set to false to disable calling .setup().

Type: boolean

Default:

true

Declared by:

plugins.md-table-tidy.settings

Options provided to the require('md-table-tidy').setup function.

Type: lua value

Default:

{ }

Example:

{
  keymap = {
    table_tidy = "<leader>mt";
    table_tidy_all = "<leader>ma";
  };
  padding = 0;
}

Declared by: