FG42 user configuration templated has been revised.

This commit is contained in:
Sameer Rahmani 2018-01-26 15:37:43 +00:00
parent 22f8b66284
commit a00c787084
2 changed files with 32 additions and 15 deletions

View File

@ -27,8 +27,8 @@
'clojure
'php
'python
'arduino
)
'arduino)
;; Example of things you can do in your ~/.fg42.el config file:
@ -45,4 +45,21 @@
;;
;; Alwasy open a your TODO file as your first buffer
;; (add-hook 'fg42-after-initialize-hook 'fg42-open-todo)
;; If you're using tools like rbenv or nodenv or other similar tools
;; to manage versions of your favorite language, then you need to
;; add their shims to your path. Follow the example below:
;;
;; (setenv "PATH" (concat "/home/USER/.rbenv/shims:"
;; "/home/USER/.nodenv/shims:"
;; "/home/USER/bin:" (getenv "PATH")))
;;
;; Ofcourse you need to change the USER to your username
;; If you have a separate bin directory as well you can add it
;; to the exec-path as follows:
;;
;; (add-to-list 'exec-path "/home/USER/bin")
;;
;; abilities like clojure which uses the lien tools need to find
;; specific tools (lein in this case) in your exec-path.

View File

@ -15,27 +15,27 @@
;; (theme themes/color-theme-spacemacs-light)
;; (theme themes/color-theme-doom-one)
;; (theme themes/color-theme-doom-molokai)
(theme themes/color-theme-spacemacs-dark)
;;(theme themes/color-theme-spacemacs-dark)
;; ABILITIES
;; =========
;; Disable abilities which you don't want.
(disable 'rbenv 'helm 'spell 'linum 'smart-mode-line)
;; (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
)
;; (activate-extensions 'editor
;; 'development
;; 'web
;; 'editor-theme
;; ;'arduino
;; 'javascript
;; ;'php
;; 'clojure
;; ;'python
;; 'ruby
;; )
;; USER CONFIGS
;; ============