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

yuck

URL: https://github.com/elkowar/yuck.vim/

Maintainers: Eveeifyeve

plugins.yuck.enable

Whether to enable yuck.

Type: boolean

Default:

false

Example:

true

Declared by:

plugins.yuck.package

The yuck package to use.

Type: package

Default:

pkgs.vimPlugins.yuck-vim

Declared by:

plugins.yuck.autoLoad

Whether to automatically load yuck when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example:

false

Declared by:

plugins.yuck.settings

The configuration options for yuck without the yuck_ prefix.

For example, the following settings are equivialent to these :setglobal commands:

  • foo_bar = 1 -> :setglobal yuck_foo_bar=1
  • hello = "world" -> :setglobal yuck_hello="world"
  • some_toggle = true -> :setglobal yuck_some_toggle
  • other_toggle = false -> :setglobal noyuck_other_toggle

Type: lua value

Default:

{ }

Example:

{
  callback = lib.nixvim.mkRaw ''
  function()
    print('nixvim')
  end
'';
  foo_bar = 42;
  hostname = "localhost:8080";
}

Declared by: