FG42/config/fg42.user.el

49 lines
1.4 KiB
EmacsLisp
Raw Normal View History

;; Uncomment this for debugging purposes
;;(setq debug-on-error t)
;; THEME
;; =====
;; Load the default theme
;; Other options are:
;; (theme themes/color-theme-spacemacs-monokai)
;; (theme themes/color-theme-spacemacs-light)
2017-10-27 16:05:39 +01:00
(theme themes/color-theme-doom-one)
;; (theme themes/color-theme-doom-molokai)
2017-10-27 16:05:39 +01:00
;;(theme themes/color-theme-spacemacs-dark)
;; ABILITIES
;; =========
;; Disable abilities which you don't want.
2017-12-02 10:50:52 +00:00
(disable 'rbenv 'helm 'spell 'linum 'smart-mode-line 'desktop-mode)
;; EXTENSIONS
;; ==========
;; Uncomment extensions that you may need.
(activate-extensions 'editor
'development
'web
'editor-theme
'javascript
'ruby
'clojure
2017-10-27 16:05:39 +01:00
'php
'python
'arduino
)
;; Example of things you can do in your ~/.fg42.el config file:
;;
;; Setting your TODO file path:
;; (setq fg42-todo-file "~/.TODO.org")
;; or you can open a remote TODO file
;; (add-hook 'fg42-before-open-todo-hook 'disable-projectile)
;; (setq fg42-todo-file "/ssh:user@host:/home/USER/.TODO.org")
;;
;; Set some environment variables for your fg42 to use
;; (setenv "http_proxy" "localhost:8118")
;; (setenv "https_proxy" "localhost:8118")
;;
;; Alwasy open a your TODO file as your first buffer
;; (add-hook 'fg42-after-initialize-hook 'fg42-open-todo)
;;