diff options
author | Raúl Benencia <rul@kalgan.cc> | 2013-08-24 17:12:14 -0300 |
---|---|---|
committer | Raúl Benencia <rul@kalgan.cc> | 2013-08-24 17:12:14 -0300 |
commit | 4728bb04b2f5daff7a2ed8c30dd0fd8a8ee9539b (patch) | |
tree | e1470ff4f60e64c52927ff590ceaeef8461bd886 /Config.hs | |
parent | fc1231ca6e008582fb6a669cb9d0607059e82cdd (diff) |
Advancing with monad transformers
Diffstat (limited to 'Config.hs')
-rw-r--r-- | Config.hs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -16,7 +16,7 @@ data LazymailConfig = LazymailConfig { , selectionColor :: (Color, Color) , statusBarColor :: (Color, Color) , showStatusBar :: Bool - , basePath :: Maybe FilePath + , initialPath :: Maybe FilePath } defaultConfig = LazymailConfig { @@ -24,7 +24,7 @@ defaultConfig = LazymailConfig { , selectionColor = (ColorBlack, ColorWhite) , statusBarColor = (ColorBlack, ColorWhite) , showStatusBar = True - , basePath = Nothing + , initialPath = Nothing } -- @@ -32,4 +32,4 @@ defaultConfig = LazymailConfig { -- preferences. In a possible future maybe I'll work in a not-so-crappy -- config system. -- -customConfig = defaultConfig { basePath = Just "/home/rul/mail/kalgan" }
\ No newline at end of file +customConfig = defaultConfig { initialPath = Just "/home/rul/mail/kalgan" }
\ No newline at end of file |