aboutsummaryrefslogtreecommitdiff
path: root/config.dot/luakit.link/userprefs.lua
blob: 50dbef67428e8ebd41667449170c74980dc2a317 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
-- User preferences
-- See https://github.com/luakit/luakit/issues/468

-- Requirements
local settings = require "settings"

-- Homepage
settings.window.home_page = "luakit://newtab"

-- Search engines
settings.window.search_engines.github      = "https://github.com/search?q=%s"
settings.window.search_engines.imdb        = "http://imdb.com/find?s=all&q=%s"
settings.window.search_engines.google      = "https://google.com/search?q=%s"
settings.window.search_engines.duck        = "https://duckduckgo.com/?q=%s"
settings.window.search_engines.wikipedia   = "https://en.wikipedia.org/wiki/Special:Search?search=%s"
settings.window.search_engines.debbugs     = "https://bugs.debian.org/%s"
settings.window.search_engines.sourceforge = "https://sf.net/search/?words=%s"
settings.window.search_engines.debian      = "https://packages.debian.org/search?keywords=%s"
settings.window.search_engines.searx       = "https://searx.org/?q=%s"
settings.window.search_engines.default     = settings.window.search_engines.duck