Initial commit
This commit is contained in:
commit
4ac9c221ca
3 changed files with 35 additions and 0 deletions
18
dot_wezterm.lua
Normal file
18
dot_wezterm.lua
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
-- Pull in the wezterm API
|
||||
local wezterm = require 'wezterm'
|
||||
|
||||
-- This will hold the configuration.
|
||||
local config = wezterm.config_builder()
|
||||
|
||||
-- This is where you actually apply your config choices
|
||||
config.keys = {
|
||||
{
|
||||
-- F11
|
||||
key = "raw:454",
|
||||
action = wezterm.action.ToggleFullScreen,
|
||||
},
|
||||
}
|
||||
|
||||
-- and finally, return the configuration to wezterm
|
||||
return config
|
||||
|
||||
Loading…
Reference in a new issue