From 66c963bb41213bc09dac88b201ba67ba4d0835ad Mon Sep 17 00:00:00 2001 From: Charles Date: Sat, 28 Mar 2020 22:25:24 +0100 Subject: Added vim pluggin: quick-scope --- xmonad.hs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'xmonad.hs') diff --git a/xmonad.hs b/xmonad.hs index 99a35e8..90c536e 100644 --- a/xmonad.hs +++ b/xmonad.hs @@ -21,8 +21,10 @@ main = do , startupHook = myStartupHook } `additionalKeysP` myKeys -myLayouts = tiled ||| Mirror tiled ||| noBorders Full - where tiled = Tall 1 (3 / 100) (3 / 5) +myLayouts = tiledBigMaster ||| Mirror tiledEven ||| noBorders Full + where tiledBigMaster = Tall 1 (3 / 100) (3 / 5) + tiledEven = Tall 1 (3 / 100) (1 / 2) + myStartupHook = do spawnOnce "redshift -c /home/charles/.config/redshift.conf &" -- cgit