FG42/fg42-config.el

48 lines
1.2 KiB
EmacsLisp
Raw Normal View History

2015-07-07 12:55:33 +01:00
(add-to-list 'load-path (concat (getenv "FG42_HOME") "/lib"))
;; DEBUG
;; =====
;; Uncomment the below code to trigger stacktraces in case of any errors
;; (toggle-debug-on-error)
(require 'fg42)
2015-07-07 00:01:24 +01:00
;; THEME
;; =====
2015-07-09 12:05:26 +01:00
;; Load the default theme
;; Other options are:
;; (theme themes/color-theme-spacemacs-monokai)
;; (theme themes/color-theme-spacemacs-light)
2017-04-08 00:55:05 +01:00
;; (theme themes/color-theme-doom-one)
;; (theme themes/color-theme-doom-molokai)
(theme themes/color-theme-spacemacs-dark)
2015-07-09 12:05:26 +01:00
;; ABILITIES
;; =========
;; Disable abilities which you don't want.
2017-04-08 00:55:05 +01:00
(disable 'rbenv 'helm 'spell 'linum 'smart-mode-line)
;; EXTENSIONS
;; ==========
;; Uncomment extensions that you may need.
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
;; USER CONFIGS
;; ============
;; Load user config file in ~/.fg42.el
(load-user-config "~/.fg42.el")
;; NOTE: It's important to use ~/.fg42.el instead of this file
;; because updating fg42 will discard your changes in
;; this file.
2015-07-07 12:25:06 +01:00
(fg42-initialize)