aboutsummaryrefslogtreecommitdiff
path: root/.emacs
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@rak.ac>2021-03-08 21:16:00 -0500
committerRyan Kavanagh <rak@rak.ac>2021-03-08 21:16:00 -0500
commitd5c1bed75ab322163d5bb2fee8fd94cb09c6bcba (patch)
tree4c08ca07e09ad1e35da7a22264ddce3f64b59b8c /.emacs
parentAdded missing export GPG_TTY needed by gpg-agent (diff)
emacs config changes
Diffstat (limited to '.emacs')
-rw-r--r--.emacs11
1 files changed, 11 insertions, 0 deletions
diff --git a/.emacs b/.emacs
index 0523a45..258d363 100644
--- a/.emacs
+++ b/.emacs
@@ -334,6 +334,9 @@ Extended Format date in the date field and return it as a string obeing
:config
(helm-mode 1))
+(use-package helm-org
+ :ensure t)
+
(use-package info-look
:ensure t)
@@ -460,6 +463,10 @@ Otherwise split the current paragraph into one sentence per line."
(use-package octave
:mode ("\\.m\'" . octave-mode))
+(use-package org
+ :custom
+ (org-link-file-path-type 'relative))
+
(use-package org-noter
:ensure t
:custom
@@ -772,6 +779,10 @@ If not, issue a warning."
:custom
(column-mode-number t))
+(use-package smerge-mode
+ :custom
+ (smerge-command-prefix (kbd "C-c v")))
+
(use-package sml-mode
:ensure t
:mode ("\\.sml\\'" . sml-mode))