Update my configuration files

This commit is contained in:
Mateus Pinto Rodrigues
2018-03-27 20:54:18 -03:00
parent 2362e805bd
commit 388b73da07
6 changed files with 62 additions and 4 deletions

View File

@@ -29,15 +29,23 @@
("org" :components ("org-notes" "org-static"))))
;; preserve indentation on output
(setq org-src-preserve-indentation t)
;; some config for org-babel
(setq org-confirm-babel-evaluate nil
org-src-fontify-natively t
org-src-tab-acts-natively t)
org-src-tab-acts-natively t
org-hide-emphasis-markers t)
;;load languages babel
;; use js2-mode instead of js-mode in org-mode
(add-to-list 'org-src-lang-modes '("js" . js2))
;; load languages babel
(org-babel-do-load-languages
'org-babel-load-languages
'((clojure . t)
'((C . t)
(js . t)
(emacs-lisp . t)
(haskell . t)
(scheme . t)