aboutsummaryrefslogtreecommitdiff
path: root/config.lua
blob: 1c46da06cd43baea439664146ed1874fd535400a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
print('hello starting up...')

--- @type table
web = web
--- @type table
uv = uv

web.keymap.set('n', 'm', function()
  print('Hello world. Keypress test')
end)

web.keymap.set('n', 'o', function()
  web.tabopen('https://lite.duckduckgo.com')
end)

print('ending...')