FG42/fg42-config.el

21 lines
464 B
EmacsLisp
Raw Normal View History

2015-07-07 12:55:33 +01:00
(add-to-list 'load-path (concat (getenv "FG42_HOME") "/lib"))
2015-07-01 10:28:30 +01:00
(toggle-debug-on-error)
(require 'fg42)
2015-07-07 00:01:24 +01:00
;; Activate these extensions
2015-07-08 17:59:42 +01:00
(activate-extensions 'editor
2015-07-09 00:00:45 +01:00
'development
2015-07-09 10:11:54 +01:00
'web
'ruby)
2015-07-07 00:01:24 +01:00
;; Disable abilities which we do not want to load
(disable 'rbenv)
2015-07-09 11:37:36 +01:00
;; Load the default theme
(theme themes/color-theme-monokai)
;; Load user config file in ~/.fg42
(load-user-config "~/.fg42")
2015-07-07 12:25:06 +01:00
(fg42-initialize)