Skip to content

Configuration

Kacper Fiedorowicz edited this page May 10, 2023 · 5 revisions

The main config file is ~/.config/rose/init.lua

Options

In rose you can configure anything you want,

we are working to implement all possible things.

Searching

rose.startpage = "https://duckduckgo.com"

Application

rose.settings = {
   darkmode = true,
   animations = true,
   height = 720,
   width = 1280
}

Webkit settings

rose.webkit.settings = {
   gestures = true,
   allow_file_access_from_urls = false,
   developer_extras = true,
   webgl = true,
   smooth_scrolling = true
}

Keymaps

rose.keymap.set("c-r", rose.webview.reload)
rose.keymap.set("c-equal", rose.webview.zoomin)
rose.keymap.set("c-minus", rose.webview.zoomout)
Clone this wiki locally