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

rzls

URL: https://github.com/tris203/rzls.nvim/

Maintainers: Austin Horstman

plugins.rzls.enable

Whether to enable rzls.

Type: boolean

Default:

false

Example:

true

Declared by:

plugins.rzls.enableRazorFiletypeAssociation

Sets up the filetype association of .cshtml and razor files to trigger treesitter and lsp support for razor functionality.

Type: boolean

Default:

true

Declared by:

plugins.rzls.package

The rzls package to use.

Type: package

Default:

pkgs.vimPlugins.rzls-nvim

Declared by:

plugins.rzls.autoLoad

Whether to automatically load rzls when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example:

false

Declared by:

plugins.rzls.callSetup

Whether to generate the standard require('rzls').setup(...) call for this plugin.

By default, this follows the plugin’s built-in behavior. Set this to false to disable the generated setup call, or to true to force it even when the plugin would only call it conditionally.

Type: null or boolean

Default:

null

Declared by:

plugins.rzls.settings

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

Type: lua value

Default:

{ }

Example:

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

Declared by: