FG42/fg42-config.el

47 lines
1.3 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.
;; (disable 'rbenv 'helm 'spell 'linum 'smart-mode-line)
;; EXTENSIONS
;; ==========
;; Uncomment extensions that you may need.
;; (activate-extensions 'editor
;; 'development
;; 'web
;; 'editor-theme
;; ;'arduino
;; 'javascript
;; ;'php
;; 'clojure
;; ;'python
;; 'ruby
;; )
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)