plugins.julia-cell.settings

The configuration options for julia-cell without the julia_cell_ prefix.

Example: To set julia_cell_foo_bar to 1, write

  settings = {
    foo_bar = true;
  };

Type: attribute set of anything

Default: { }

Example:

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

Declared by:

plugins.julia-cell.settings.delimit_cells_by

Specifies if cells are delimited by ‘marks’ or ‘tags’.

Type: null or one of “marks”, “tags” or raw lua code

Default: null

Plugin default: "marks"

Declared by:

plugins.julia-cell.settings.tag

Specifies the tag format.

Type: null or string or raw lua code

Default: null

Plugin default: "##"

Declared by: