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

mini-starter

URL: https://github.com/echasnovski/mini.starter/

Maintainers: Heitor Augusto

plugins.mini-starter.enable

Whether to enable mini.starter.

Type: boolean

Default: false

Example: true

Declared by:

plugins.mini-starter.package

The mini.starter package to use.

Type: package

Default: pkgs.vimPlugins.mini-starter

Declared by:

plugins.mini-starter.autoLoad

Whether to automatically load mini.starter when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.mini-starter.settings

Options provided to the require('mini.starter').setup function.

Type: attribute set of anything

Default: { }

Example:

{
  autoopen = true;
  content_hooks = [
    lib.nixvim.mkRaw "require(\"mini.starter\").gen_hook.adding_bullet()"
    lib.nixvim.mkRaw "require(\"mini.starter\").gen_hook.indexing('all', { 'Builtin actions' })"
    lib.nixvim.mkRaw "require(\"mini.starter\").gen_hook.aligning('center', 'center')"
  ];
  evaluate_single = true;
  header = ''
    ███╗   ██╗██╗██╗  ██╗██╗   ██╗██╗███╗   ███╗
    ████╗  ██║██║╚██╗██╔╝██║   ██║██║████╗ ████║
    ██╔██╗ ██║██║ ╚███╔╝ ██║   ██║██║██╔████╔██║
    ██║╚██╗██║██║ ██╔██╗ ╚██╗ ██╔╝██║██║╚██╔╝██║
    ██║ ╚████║██║██╔╝ ██╗ ╚████╔╝ ██║██║ ╚═╝ ██║
  '';
  items = [
    lib.nixvim.mkRaw "require(\"mini.starter\").sections.builtin_actions()"
    lib.nixvim.mkRaw "require(\"mini.starter\").sections.recent_files(10, false)"
    lib.nixvim.mkRaw "require(\"mini.starter\").sections.recent_files(10, true)"
    lib.nixvim.mkRaw "require(\"mini.starter\").sections.sessions(5, true)"
  ];
}

Declared by: