1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-06-13 16:55:35 +02:00
qmckl/tools/init.el

85 lines
2.5 KiB
EmacsLisp
Raw Permalink Normal View History

2021-03-06 12:40:41 +01:00
(package-initialize)
(add-to-list 'package-archives
'("gnu" . "https://elpa.gnu.org/packages/"))
(add-to-list 'package-archives
'("melpa-stable" . "https://stable.melpa.org/packages/"))
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/"))
(setq package-archive-priorities '(("melpa-stable" . 100)
("melpa" . 50)
("gnu" . 10)))
(require 'cl)
(let* ((required-packages
'(htmlize
evil
org-evil
org-bullets
))
(missing-packages (remove-if #'package-installed-p required-packages)))
(when missing-packages
(message "Missing packages: %s" missing-packages)
(package-refresh-contents)
(dolist (pkg missing-packages)
(package-install pkg)
(message "Package %s has been installed" pkg))))
(setq backup-directory-alist
`(("." . ,(concat user-emacs-directory "backups"))))
(setq backup-by-copying t)
2021-03-09 01:16:23 +01:00
(require 'org)
2021-03-06 12:40:41 +01:00
(setq org-format-latex-options (plist-put org-format-latex-options :scale 1.6))
(setq org-hide-leading-stars t)
(setq org-alphabetical-lists t)
2021-03-09 01:16:23 +01:00
(setq org-src-fontify-natively t)
(setq org-src-tab-acts-natively t)
2021-03-06 12:40:41 +01:00
(setq org-src-preserve-indentation t)
2021-03-09 01:16:23 +01:00
(setq org-hide-emphasis-markers nil)
2021-03-06 12:40:41 +01:00
(setq org-pretty-entities nil)
2021-03-09 01:16:23 +01:00
(setq org-confirm-babel-evaluate nil) ;; Do not ask for confirmation all the time!!
2021-10-06 10:35:43 +02:00
(setq python-indent-guess-indent-offset-verbose nil) ;; Remove warning : Cant guess python-indent-offset
2021-03-06 12:40:41 +01:00
(org-babel-do-load-languages
'org-babel-load-languages
'(
(emacs-lisp . t)
(shell . t)
(python . t)
2021-03-06 19:46:27 +01:00
(C . t)
2021-03-06 12:40:41 +01:00
(org . t)
(makefile . t)
))
;; Use python3 instead of python2.7
(setq org-babel-python-command "python3")
2021-03-09 01:16:23 +01:00
(add-hook 'org-babel-after-execute-hook 'org-display-inline-images)
'(indent-tabs-mode nil)
2021-03-06 12:40:41 +01:00
(setq evil-want-C-i-jump nil)
(require 'evil)
2021-03-06 12:40:41 +01:00
(evil-mode 1)
(global-font-lock-mode t)
2021-03-09 01:16:23 +01:00
(global-superword-mode 1)
2021-03-06 12:40:41 +01:00
(setq line-number-mode 1)
(setq column-number-mode 1)
(evil-select-search-module 'evil-search-module 'evil-search)
(global-set-key (kbd "C-+") 'text-scale-increase)
(global-set-key (kbd "C--") 'text-scale-decrease)
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
2021-03-09 01:16:23 +01:00
;; Your init file should contain only one such instance.
2021-03-06 12:40:41 +01:00
;; If there is more than one, they won't work right.
'(ansi-color-faces-vector
[default default default italic underline success warning error])
'(custom-enabled-themes (quote (leuven)))
)