plugins.cursorline.settings

Options provided to the require('nvim-cursorline').setup function.

Type: attribute set of anything

Default: { }

Example:

{
  settings = {
    cursorline = {
      enable = true;
      number = false;
      timeout = 1000;
    };
    cursorword = {
      enable = true;
      hl = {
        underline = true;
      };
      min_length = 3;
    };
  };
}

Declared by: