plugins.julia-cell.settings
The configuration options for julia-cell without the julia_cell_
prefix.
For example, the following settings are equivialent to these :setglobal
commands:
foo_bar = 1
->:setglobal julia_cell_foo_bar=1
hello = "world"
->:setglobal julia_cell_hello="world"
some_toggle = true
->:setglobal julia_cell_some_toggle
other_toggle = false
->:setglobal nojulia_cell_other_toggle
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: