FG42/fg42-config.el

28 lines
664 B
EmacsLisp
Raw Normal View History

2015-07-07 12:55:33 +01:00
(add-to-list 'load-path (concat (getenv "FG42_HOME") "/lib"))
(toggle-debug-on-error)
(require 'fg42)
2015-07-07 00:01:24 +01:00
2015-07-09 12:05:26 +01:00
;; Load the default theme
(theme themes/color-theme-monokai)
;; Disable abilities which we do not want to load
2016-11-21 11:59:37 +00:00
(disable 'rbenv 'helm)
;; 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
2015-07-09 12:05:26 +01:00
'editor-theme
2016-09-22 19:38:54 +01:00
;'arduino
'javascript
2015-12-27 12:48:48 +00:00
;'php
2016-09-22 19:38:54 +01:00
'clojure
2015-12-27 12:48:48 +00:00
;'python
'ruby
2016-09-22 19:38:54 +01:00
)
2015-07-07 00:01:24 +01:00
;; Load user config file in ~/.fg42
(load-user-config "~/.fg42")
2015-07-07 12:25:06 +01:00
(fg42-initialize)