lir

URL: https://github.com/tamago324/lir.nvim/

Maintainers: Gaetan Lepage

plugins.lir.enable

Whether to enable lir.nvim.

Type: boolean

Default: false

Example: true

Declared by:

plugins.lir.package

The lir.nvim package to use.

Type: package

Default: pkgs.vimPlugins.lir-nvim

Declared by:

plugins.lir.autoLoad

Whether to automatically load lir.nvim when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.lir.settings

Options provided to the require('lir').setup function.

Type: attribute set of anything

Default: { }

Example:

{
  devicons = {
    enable = false;
  };
  hide_cursor = true;
  mappings = {
    "-" = {
      __raw = "require('lir').actions.up";
    };
    "<CR>" = {
      __raw = "require('lir').actions.edit";
    };
    "<ESC>" = {
      __raw = "require('lir').actions.quit";
    };
    "@" = {
      __raw = "require('lir').actions.cd";
    };
  };
  show_hidden_files = true;
}

Declared by: