cord

URL: https://github.com/vyfor/cord.nvim

Maintainers: Eveeifyeve

plugins.cord.enable

Whether to enable cord.nvim.

Type: boolean

Default: false

Example: true

Declared by:

plugins.cord.package

The cord.nvim package to use.

Type: package

Default: pkgs.vimPlugins.cord-nvim

Declared by:

plugins.cord.autoLoad

Whether to automatically load cord.nvim when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.cord.settings

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

Type: attribute set of anything

Default: { }

Example:

{
  display = {
    show_time = true;
    swap_fields = false;
    swap_icons = false;
  };
  ide = {
    enable = true;
    show_status = true;
    text = "Idle";
    timeout = 300000;
    tooltip = "💤";
  };
  text = {
    editing = "Editing {}";
    file_browser = "Browsing files in {}";
    vcs = "Committing changes in {}";
    viewing = "Viewing {}";
    workspace = "In {}";
  };
  usercmd = false;
}

Declared by: