plugins.startify.settings.lists

Startify displays lists. Each list consists of a type and optionally a header and custom indices.

Default:

  [
    {
      type = "files";
      header = ["   MRU"];
    }
    {
      type = "dir";
      header = [{__raw = "'   MRU' .. vim.loop.cwd()";}];
    }
    {
      type = "sessions";
      header = ["   Sessions"];
    }
    {
      type = "bookmarks";
      header = ["   Bookmarks"];
    }
    {
      type = "commands";
      header = ["   Commands"];
    }
  ]

Type: list of (lua code string or (attribute set of anything))

Default: [ ]

Declared by:

plugins.startify.settings.lists.*.header

The ‘header’ is a list of strings, whereas each string will be put on its own line in the header.

Type: null or (list of (string or raw lua code))

Default: null

plugins.startify.settings.lists.*.indices

The ‘indices’ is a list of strings, which act as indices for the current list. Opposed to the global custom_indices, this is limited to the current list.

Type: null or (list of (string or raw lua code))

Default: null

plugins.startify.settings.lists.*.type

The type of the list

Type: string

Example: "files"