From eea28caf1298032efcccd16fe9fad2145c92918a Mon Sep 17 00:00:00 2001
From: Chizi123 <joelgrun@gmail.com>
Date: Mon, 11 Mar 2019 11:02:21 +0000
Subject: [PATCH] Addded more languages to org babel

---
 config.org |  202 +++++++++++++++++++++++++++++++------------------
 1 files changed, 127 insertions(+), 75 deletions(-)

diff --git a/config.org b/config.org
index 39dc487..d84c06c 100644
--- a/config.org
+++ b/config.org
@@ -3,10 +3,8 @@
 Dependencies needed for Aspell, poppler PDF-tools, compilers and ghost-script provided by mingw64
 #+BEGIN_SRC emacs-lisp
   (when (eq system-type 'windows-nt)
-    ;; (add-to-list 'exec-path "C:/msys64/usr/bin")
+    (add-to-list 'exec-path "C:/msys64/usr/bin")
     (add-to-list 'exec-path "C:/msys64/mingw64/bin")
-    (add-to-list 'exec-path "c:/Program Files/Racket")
-    (add-to-list 'exec-path "c:/Users/joelg/TeXcount_3_1_1")
     (add-to-list 'exec-path "c:/Program Files/gnuplot")
     (setenv "PATH" (mapconcat #'identity exec-path path-separator)))
 #+END_SRC
@@ -284,11 +282,11 @@
 ** Workgroups
 Open the pages when you quit
 #+BEGIN_SRC emacs-lisp
-(use-package workgroups2
-  :ensure t
-  :diminish workgroups-mode
-  :config
-  (workgroups-mode 1))
+  ;; (use-package workgroups2
+  ;;   :ensure t
+  ;;   :diminish workgroups-mode
+  ;;   :config
+  ;;   (workgroups-mode 1))
 #+END_SRC
 ** ibuffer
 #+BEGIN_SRC emacs-lisp
@@ -460,57 +458,57 @@
 #+END_SRC
 ** Magit
 #+BEGIN_SRC emacs-lisp
-(use-package magit
-  :ensure t
-  :commands magit-get-top-dir
-  :bind ("C-x g" . magit-status)
-  :init
-  (progn
-    ;; make magit status go full-screen but remember previous window
-    ;; settings
-    ;; from: http://whattheemacsd.com/setup-magit.el-01.html
-    (defadvice magit-status (around magit-fullscreen activate)
-      (window-configuration-to-register :magit-fullscreen)
-      ad-do-it
-      (delete-other-windows))
-
-    ;; Close popup when committing - this stops the commit window
-    ;; hanging around
-    ;; From: http://git.io/rPBE0Q
-    (defadvice git-commit-commit (after delete-window activate)
-      (delete-window))
-
-    (defadvice git-commit-abort (after delete-window activate)
-      (delete-window))
-
-  :config
-  (progn
-    ;; restore previously hidden windows
-    (defadvice magit-quit-window (around magit-restore-screen activate)
-      (let ((current-mode major-mode))
+  (use-package magit
+    :ensure t
+    :commands magit-get-top-dir
+    :bind ("C-x g" . magit-status)
+    :init
+    (progn
+      ;; make magit status go full-screen but remember previous window
+      ;; settings
+      ;; from: http://whattheemacsd.com/setup-magit.el-01.html
+      (defadvice magit-status (around magit-fullscreen activate)
+        (window-configuration-to-register :magit-fullscreen)
         ad-do-it
-        ;; we only want to jump to register when the last seen buffer
-        ;; was a magit-status buffer.
-        (when (eq 'magit-status-mode current-mode)
-          (jump-to-register :magit-fullscreen)))))
+        (delete-other-windows))
 
-  ;; magit settings
-  (setq
-   ;; don't put "origin-" in front of new branch names by default
-   magit-default-tracking-name-function 'magit-default-tracking-name-branch-only
-   ;; open magit status in same window as current buffer
-   magit-status-buffer-switch-function 'switch-to-buffer
-   ;; highlight word/letter changes in hunk diffs
-   magit-diff-refine-hunk t
-   ;; ask me if I want to include a revision when rewriting
-   magit-rewrite-inclusive 'ask
-   ;; ask me to save buffers
-   magit-save-some-buffers t
-   ;; pop the process buffer if we're taking a while to complete
-   magit-process-popup-time 10
-   ;; ask me if I want a tracking upstream
-   magit-set-upstream-on-push 'askifnotset
-   )))
+      ;; Close popup when committing - this stops the commit window
+      ;; hanging around
+      ;; From: http://git.io/rPBE0Q
+      (defadvice git-commit-commit (after delete-window activate)
+        (delete-window))
+
+      (defadvice git-commit-abort (after delete-window activate)
+        (delete-window))
+
+      :config
+      (progn
+        ;; restore previously hidden windows
+        (defadvice magit-quit-window (around magit-restore-screen activate)
+          (let ((current-mode major-mode))
+            ad-do-it
+            ;; we only want to jump to register when the last seen buffer
+            ;; was a magit-status buffer.
+            (when (eq 'magit-status-mode current-mode)
+              (jump-to-register :magit-fullscreen)))))
+
+      ;; magit settings
+      (setq
+       ;; don't put "origin-" in front of new branch names by default
+       magit-default-tracking-name-function 'magit-default-tracking-name-branch-only
+       ;; open magit status in same window as current buffer
+       magit-status-buffer-switch-function 'switch-to-buffer
+       ;; highlight word/letter changes in hunk diffs
+       magit-diff-refine-hunk t
+       ;; ask me if I want to include a revision when rewriting
+       magit-rewrite-inclusive 'ask
+       ;; ask me to save buffers
+       magit-save-some-buffers t
+       ;; pop the process buffer if we're taking a while to complete
+       magit-process-popup-time 10
+       ;; ask me if I want a tracking upstream
+       magit-set-upstream-on-push 'askifnotset
+       )))
 #+END_SRC
 ** CEDET
 *** semantic
@@ -654,6 +652,11 @@
     :after company
     :config
     (company-auctex-init))
+
+  (use-package company-bibtex
+    :ensure t
+    :after company
+    (add-to-list 'company-backends 'company-bibtex))
 #+END_SRC
 **** Preview pane
 #+BEGIN_SRC emacs-lisp
@@ -665,24 +668,28 @@
 **** TeXcount
      Word counts in latex
      #+BEGIN_SRC emacs-lisp
+       (when (eq system-type 'windows-nt)
+         (add-to-list 'exec-path "c:/Users/joelg/TeXcount_3_1_1")
+         (setenv "PATH" (mapconcat #'identity exec-path path-separator)))
+
        (defun texcount ()
-	 (interactive)
-	 (let*
-	     ( (this-file (buffer-file-name))
-	       (enc-str (symbol-name buffer-file-coding-system))
-	       (enc-opt
-		(cond
-		 ((string-match "utf-8" enc-str) "-utf8")
-		 ((string-match "latin" enc-str) "-latin1")
-		 ("-encoding=guess")
-		 ) )
-	       (word-count
-		(with-output-to-string
-		  (with-current-buffer standard-output
-		    (call-process "texcount" nil t nil "-0" enc-opt this-file)
-		    ) ) ) )
-	   (message word-count)
-	   ) )
+         (interactive)
+         (let*
+             ( (this-file (buffer-file-name))
+               (enc-str (symbol-name buffer-file-coding-system))
+               (enc-opt
+                (cond
+                 ((string-match "utf-8" enc-str) "-utf8")
+                 ((string-match "latin" enc-str) "-latin1")
+                 ("-encoding=guess")
+                 ) )
+               (word-count
+                (with-output-to-string
+                  (with-current-buffer standard-output
+                    (call-process "texcount" nil t nil "-0" enc-opt this-file)
+                    ) ) ) )
+           (message word-count)
+           ) )
        (add-hook 'LaTeX-mode-hook (lambda () (define-key LaTeX-mode-map (kbd "C-c c") 'texcount)))
        (add-hook 'latex-mode-hook (lambda () (define-key latex-mode-map (kbd "C-c c") 'texcount)))
      #+END_SRC
@@ -694,7 +701,37 @@
   :init
   (setq plantuml-jar-path "c:/ProgramData/chocolatey/lib/plantuml/tools/plantuml.jar"))
 #+END_SRC
-* Org mode 
+
+*** Matlab
+**** Matlab mode
+#+BEGIN_SRC emacs-lisp
+  (use-package matlab-mode
+    :ensure t
+    :config
+    (autoload 'matlab-mode "matlab" "Matlab Editing Mode" t)
+    (add-to-list
+     'auto-mode-alist
+     '("\\.m$" . matlab-mode))
+    (setq matlab-indent-function t))
+#+END_SRC
+*** Racket
+**** Major mode
+#+BEGIN_SRC emacs-lisp
+  (when (eq system-type 'windows-nt)
+    (add-to-list 'exec-path "c:/Program Files/Racket")
+    (setenv "PATH" (mapconcat #'identity exec-path path-separator)))
+
+  (use-package racket-mode
+      :ensure t
+      :config
+      (autoload 'racket-mode "Racket" "Racket Editing Mode" t)
+      (add-to-list
+       'auto-mode-alist
+       '("\\.rkt$" . matlab-mode))
+      (setq matlab-indent-function t))
+#+END_SRC
+
+* Org mode
 ** Up to date org
 #+BEGIN_SRC emacs-lisp
     (use-package org
@@ -725,3 +762,18 @@
   :config
     (add-hook 'org-mode-hook (lambda () (org-bullets-mode))))
 #+END_SRC
+** Org Babel
+*** Languages
+Add C to org babel supported languages
+#+BEGIN_SRC emacs-lisp
+  (org-babel-do-load-languages 'org-babel-load-languages '((emacs-lisp . t)
+                                                           (C . t)
+                                                           (python . t)
+                                                           (latex . t)
+                                                           (scheme . t)
+                                                           (gnuplot . t)
+                                                           (matlab . t)
+                                                           (plantuml . t)
+                                                           (fortran . t)
+                                                           (java . t)))
+#+END_SRC

--
Gitblit v1.9.3