This is where you configure SilverBullet to your liking. See Config for a full list of configuration options.config.set {
plugs = {
"github:joekrill/silverbullet-treeview/treeview.plug.js"
},
actionButtons = {
{
icon = "home",
description = "Go to the index page",
run = function()
editor.invokeCommand("Navigate: Home")
end
},
{
icon = "activity",
description = "What's new",
run = function()
editor.navigate {
page = "CHANGELOG"
}
end
},
{
icon = "message-circle",
description = "Community",
run = function()
editor.openUrl "https://community.silverbullet.md"
end
},
{
icon = "book",
description = "Open page",
run = function()
editor.invokeCommand("Navigate: Page Picker")
end
},
{
icon = "terminal",
description = "Run command",
run = function()
editor.invokeCommand "Open Command Palette"
end,
}
},
smartQuotes = {
enabled = true,
},
queryCollate = {
enabled = true,
locale = "en",
options = {
caseFirst = "upper"
}
}
}