Remove some things I don’t use, stop latex snippets relying on external files

This commit is contained in:
trémeur 2021-05-17 18:04:08 +01:00
parent 0541598ed5
commit 2f3f5d6afb
3 changed files with 148 additions and 23 deletions

21
init.el
View file

@ -14,6 +14,7 @@
(set-selection-coding-system 'utf-8)
;; sonic arts
(setq ring-bell-function 'ignore)
(setq visible-bell t)
@ -161,14 +162,6 @@
(concat user-emacs-directory
(convert-standard-filename "elpa/"))))
(use-package reftex
;; easier latex references
:init
(add-hook 'LaTeX-mode-hook 'turn-on-reftex)
(setq reftex-plug-into-AUCTeX t)
:config
(setq reftex-default-bibliography '("~/Documents/drive/res/readings/fullbib.bib"))) ; won't work currently on windows, not syncing this file
(use-package typo
;; smart quotes
:custom
@ -184,9 +177,6 @@
;; Major modes
(use-package 2048-game)
;; play the top game of 2014
(use-package interleave)
;; for annotating pdfs in an org file
@ -276,15 +266,6 @@
(org-ellipsis "")
:hook (org-mode . org-bullets-mode))
(global-set-key [f2] 'org-capture)
(load-file "~/Documents/drive/org/capture.el") ; capture templates stored here
(setq org-capture-bookmark nil)
(use-package org-drill
:config
(setq org-id-locations-file "~/Documents/drive/org/.org-id-locations")
(setq persist--directory-location "~/Documents/drive/org/persist"))
(setq org-todo-keywords
'((sequence "TODO" "|" "DONE" "CANCELLED")))