mirror of https://github.com/Chizi123/.emacs.d.git

Chizi123
2019-02-19 b1d01d96bb7923787987d44a8d7f41b88cf3b60b
Added reftex and some minor changes
2 files modified
25 ■■■■ changed files
config.org 21 ●●●● patch | view | raw | blame | history
init.el 4 ●●● patch | view | raw | blame | history
config.org
@@ -73,7 +73,7 @@
  (pdf-tools-install))
#+END_SRC
* Helm and projectile
* Helm and Projectile
** Helm core
#+BEGIN_SRC emacs-lisp
(use-package helm-config
@@ -116,7 +116,8 @@
     :config
     (projectile-global-mode)
     (setq projectile-completion-system 'helm)
     (setq projectile-indexing-method 'alien))
     (when (eq system-type 'windows-nt)
       (setq projectile-indexing-method 'alien)))
 #+END_SRC
*** Let it compile things
 #+BEGIN_SRC emacs-lisp
@@ -453,7 +454,7 @@
    :ensure t
    :diminish company-mode
    :config
    (add-hook 'prog-mode-hook 'company-mode)
    (global-company-mode)
    (setq company-idle-delay 0)
    (setq company-minimum-prefix-length 3))
#+END_SRC
@@ -568,7 +569,7 @@
**** company
#+BEGIN_SRC emacs-lisp
    (use-package company-c-headers
        :ensure t
        :ensure tk
        :after company
        :config
        (add-hook 'c++-mode-hook 'company-mode)
@@ -641,6 +642,18 @@
    :after company
    :config
    (add-to-list 'company-backends 'company-math-symbols-unicode))
  (use-package company-reftex
    :ensure t
    :after company
    :config
    (add-to-list 'company-backends 'company-reftex))
  (use-package company-auctex
    :ensure t
    :after company
    :config
    (company-auctex-init))
#+END_SRC
**** Preview pane
#+BEGIN_SRC emacs-lisp
init.el
@@ -37,10 +37,12 @@
 '(ede-project-directories (quote ("c:/Users/joelg/.emacs.d")))
 '(package-selected-packages
   (quote
    (gnuplot-mode gnuplot matlab-mode diminish keyfreq zenburn-theme yasnippet x86-lookup workgroups2 which-key volatile-highlights use-package undo-tree srefactor smartparens racket-mode popwin plantuml-mode pdf-tools org-bullets org nyan-mode magit latex-preview-pane helm-projectile ggtags flycheck-pos-tip flycheck-clang-analyzer company-math company-c-headers clean-aindent-mode auto-package-update auctex))))
    (minesweeper speed-type spray fireplace powershell company-auctex company-bibtex company-irony-c-headers company-reftex gnuplot-mode gnuplot matlab-mode diminish keyfreq zenburn-theme yasnippet x86-lookup workgroups2 which-key volatile-highlights use-package undo-tree srefactor smartparens racket-mode popwin plantuml-mode pdf-tools org-bullets org nyan-mode magit latex-preview-pane helm-projectile ggtags flycheck-pos-tip flycheck-clang-analyzer company-math company-c-headers clean-aindent-mode auto-package-update auctex))))
(custom-set-faces
 ;; custom-set-faces was added by Custom.
 ;; If you edit it by hand, you could mess it up, so be careful.
 ;; Your init file should contain only one such instance.
 ;; If there is more than one, they won't work right.
 )
(put 'narrow-to-page 'disabled nil)
(put 'narrow-to-region 'disabled nil)