Skip to content

Commit

Permalink
load vty user config files again
Browse files Browse the repository at this point in the history
  • Loading branch information
glguy committed Jan 5, 2024
1 parent c8e3706 commit 7024508
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion exec/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ withVty = bracket buildVty shutdown
-- | Generate the initial 'Vty' value and enable the features glirc uses.
buildVty :: IO Vty
buildVty =
do vty <- mkVty defaultConfig
do cfg <- userConfig
vty <- mkVty cfg
setMode (outputIface vty) BracketedPaste True
setMode (outputIface vty) Focus True
pure vty

0 comments on commit 7024508

Please sign in to comment.