aboutsummaryrefslogtreecommitdiff
path: root/Emacs/.config
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2021-07-27 01:16:47 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2021-07-27 01:36:42 +0100
commitf045dd146f549784fc3d78c5476b21bd545ba710 (patch)
tree4657bd277902e4e457130a26fd1286eebe80bb8f /Emacs/.config
parentb854e1ccaa91a2e98ce24b6e6c5e7def28b9a9e7 (diff)
downloaddotfiles-f045dd146f549784fc3d78c5476b21bd545ba710.tar.gz
dotfiles-f045dd146f549784fc3d78c5476b21bd545ba710.tar.bz2
dotfiles-f045dd146f549784fc3d78c5476b21bd545ba710.zip
(Emacs)+recentf-mode integration, +org-export-backends variable
Diffstat (limited to 'Emacs/.config')
-rw-r--r--Emacs/.config/emacs/config.org8
1 files changed, 8 insertions, 0 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org
index ca8f9ba..5673520 100644
--- a/Emacs/.config/emacs/config.org
+++ b/Emacs/.config/emacs/config.org
@@ -1046,6 +1046,13 @@ Hl-line is a
(use-package hl-line
:hook (text-mode-hook . hl-line-mode))
#+end_src
+** Recentf
+Recentf makes it easy to
+#+begin_src emacs-lisp
+(use-package recentf
+ :straight nil
+ :hook (emacs-startup-hook . recentf-mode))
+#+end_src
** Projectile
Setup projectile, along with the tags command. Also bind "C-c C-p" to
the projectile command map for quick access.
@@ -2106,6 +2113,7 @@ Tons of variables for org-mode, including a ton of latex ones.
(org-goto-interface 'outline)
(org-src-window-setup 'current-window)
(org-indirect-buffer-display 'current-window)
+ (org-export-backends '(ascii html latex odt))
(org-imenu-depth 10)
(org-eldoc-breadcrumb-separator " → ")
(org-enforce-todo-dependencies t)