51 lines
1.8 KiB
EmacsLisp
51 lines
1.8 KiB
EmacsLisp
;; Packages
|
|
(require 'package)
|
|
(setq package-archives '(("gnu" . "https://elpa.gnu.org/packages/")
|
|
("melpa" . "https://melpa.org/packages/")))
|
|
(package-initialize)
|
|
|
|
;; File inclusion
|
|
(defun path (f) (concat "/home/deppy/.emacs.d/" f))
|
|
(defmacro include (f) (load (path f)))
|
|
|
|
;; Keybinds
|
|
(include "binds.el")
|
|
|
|
;; Style (theme, etc)
|
|
(include "style.el")
|
|
|
|
;; Zotero
|
|
(require 'zotero)
|
|
(require 'zotero-browser)
|
|
|
|
;; Secrets
|
|
(include "secrets.el")
|
|
|
|
;; Behaviour
|
|
(include "behaviour.el")
|
|
|
|
;; Don't touch
|
|
(custom-set-variables
|
|
;; custom-set-variables 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.
|
|
'(evil-undo-system 'undo-tree)
|
|
'(package-selected-packages
|
|
'(treemacs-evil treemacs solarized-theme doom-modeline all-the-icons-dired page-break-lines all-the-icons dashboard org-evil zotero vterm magit undo-fu latex-math-preview multi-term evil-terminal-cursor-changer fira-code-mode use-package haskell-mode evil-surround undo-tree evil-org evil))
|
|
'(warning-suppress-log-types '((comp)))
|
|
'(warning-suppress-types '((comp)))
|
|
'(zotero-recognize-pdfdata
|
|
"/home/deppy/.emacs.d/elpa/zotero-20211008.2207/pdftools/poppler-data/")
|
|
'(zotero-recognize-pdfinfo
|
|
"/home/deppy/.emacs.d/elpa/zotero-20211008.2207/pdftools/pdfinfo-linux-x86_64" t)
|
|
'(zotero-recognize-pdftotext
|
|
"/home/deppy/.emacs.d/elpa/zotero-20211008.2207/pdftools/pdftotext-linux-x86_64"))
|
|
(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.
|
|
'(mode-line ((t (:underline nil :overline nil))))
|
|
'(mode-line-inactive ((t (:underline nil :overline nil)))))
|