summaryrefslogtreecommitdiffstats
path: root/.emacs.d
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2019-05-09 23:56:16 -0400
committerAmin Bandali <bandali@gnu.org>2019-05-09 23:56:16 -0400
commit1f910cc05731951c98556d09a441ca29afed2955 (patch)
treebe073328ee4246012b5b38ef41b00959b9c1ba50 /.emacs.d
parent141014e58a3092220d99e210e533d24fc2b549c4 (diff)
downloadconfigs-1f910cc05731951c98556d09a441ca29afed2955.tar.gz
configs-1f910cc05731951c98556d09a441ca29afed2955.tar.xz
configs-1f910cc05731951c98556d09a441ca29afed2955.zip
emacs: briefly try out helm and auctex
leave the configs in init for now (commented out)
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/init.org28
1 files changed, 28 insertions, 0 deletions
diff --git a/.emacs.d/init.org b/.emacs.d/init.org
index 899901c..4b2d425 100644
--- a/.emacs.d/init.org
+++ b/.emacs.d/init.org
@@ -1112,6 +1112,26 @@ There's no way I could top that, so I won't attempt to.
(defalias 'locate #'counsel-locate))
#+end_src
+*** COMMENT Helm
+
+#+begin_src emacs-lisp
+(use-package helm
+ :commands (helm-M-x helm-mini helm-resume)
+ :bind (("M-x" . helm-M-x)
+ ("M-y" . helm-show-kill-ring)
+ ("C-x b" . helm-mini)
+ ("C-x C-b" . helm-buffers-list)
+ ("C-x C-f" . helm-find-files)
+ ("C-h r" . helm-info-emacs)
+ ("s-r" . helm-recentf)
+ ("C-s-r" . helm-resume)
+ :map helm-map
+ ("<tab>" . helm-execute-persistent-action)
+ ("C-i" . helm-execute-persistent-action) ; Make TAB work in terminals
+ ("C-z" . helm-select-action)) ; List actions
+ :config (helm-mode 1))
+#+end_src
+
*** eshell
#+begin_src emacs-lisp
@@ -1868,6 +1888,14 @@ treemacs
(use-package guix)
#+end_src
+** COMMENT TeX
+
+#+begin_src emacs-lisp
+(use-package auctex
+ :custom
+ (font-latex-fontify-sectioning 'color))
+#+end_src
+
* Emacs enhancements
:PROPERTIES:
:CUSTOM_ID: emacs-enhancements