lir
URL: https://github.com/tamago324/lir.nvim/
Maintainers: Gaetan Lepage
A simple file explorer for Neovim.
plugins.lir.enable
Whether to enable lir.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.lir.package
The lir package to use.
Type: package
Default:
pkgs.vimPlugins.lir-nvim
Declared by:
plugins.lir.autoLoad
Whether to automatically load lir 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: lua value
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: