2019-12-03 23:21:32 +01:00
|
|
|
;;; .doom.d/config.el -*- lexical-binding: t; -*-
|
|
|
|
|
|
|
|
;; Place your private configuration here
|
2019-12-04 04:42:19 +01:00
|
|
|
;;
|
2020-01-06 10:20:20 +01:00
|
|
|
;; Load appearance configuration
|
|
|
|
(load! "+ui")
|
2019-12-04 04:43:02 +01:00
|
|
|
;; Set projects directories
|
2020-01-23 14:49:15 +01:00
|
|
|
(setq projectile-project-search-path '("~/Projects"))
|
2019-12-04 04:43:02 +01:00
|
|
|
; Auto cleanup recentf
|
2020-06-20 02:08:47 +02:00
|
|
|
(setq recentf-auto-cleanup 300)
|
2019-12-04 04:43:02 +01:00
|
|
|
; Save backup files to ~/.cache and autosave files to ~/.cache/emacs
|
2019-12-16 20:08:37 +01:00
|
|
|
(setq backup-directory-alist `(("." . "~/.cache"))
|
|
|
|
auto-save-list-file-prefix
|
|
|
|
(concat "~/.cache/emacs"))
|
2019-12-07 20:17:29 +01:00
|
|
|
;; Set Magit repositories
|
2020-04-02 01:42:51 +02:00
|
|
|
(setq magit-repository-directories '(("~/Projects" . 3)
|
2019-12-07 20:17:29 +01:00
|
|
|
("~/.dotfiles" . 0)
|
|
|
|
("~/.doom.d" . 0)))
|
2019-12-07 20:16:04 +01:00
|
|
|
;; Load org configuration
|
|
|
|
(after! org (load! "+org"))
|
2020-01-26 14:06:00 +01:00
|
|
|
;; Enter writeroom and disable completion and line numbers in Markdown
|
2020-05-24 08:15:14 +02:00
|
|
|
(add-hook 'markdown-mode-hook (lambda () (display-line-numbers-mode -1)))
|
2019-12-31 05:56:59 +01:00
|
|
|
(after! markdown
|
2020-01-26 14:06:00 +01:00
|
|
|
(set-company-backend! 'markdown-mode nil)
|
|
|
|
(add-hook 'markdown-mode-hook 'global-writeroom-mode))
|
2019-12-07 20:17:29 +01:00
|
|
|
;; Reload file from disk without confirmation
|
|
|
|
(defun revert-buffer-no-confirm ()
|
|
|
|
(interactive)
|
|
|
|
(revert-buffer :ignore-auto :noconfirm))
|
2019-12-16 20:08:37 +01:00
|
|
|
;; Select target in Makefile compilation as default
|
|
|
|
(map! :leader :n "c c" #'makefile-executor-execute-project-target)
|
2020-01-06 10:20:20 +01:00
|
|
|
;; Align columns in CSV mode
|
|
|
|
(add-hook 'csv-mode-hook 'csv-align-mode)
|
2020-02-23 14:10:38 +01:00
|
|
|
;; Close compilation buffer if successful
|
2020-01-23 14:49:15 +01:00
|
|
|
(setq compilation-finish-functions
|
|
|
|
(lambda (buf str)
|
|
|
|
(if (null (string-match ".*exited abnormally.*" str))
|
|
|
|
(progn
|
|
|
|
(run-at-time
|
|
|
|
"0.5 sec" nil 'delete-windows-on
|
|
|
|
(get-buffer-create "*compilation*"))
|
|
|
|
(message "No Compilation Errors!")))))
|
2020-01-26 14:06:00 +01:00
|
|
|
;; Enable writeroom for text modes
|
|
|
|
(setq writeroom-major-modes '(markdown-mode org-mode))
|
2020-07-10 00:02:43 +02:00
|
|
|
;; Map leader key for major mode to ,
|
|
|
|
(setq doom-localleader-key ",")
|
2020-09-02 18:32:17 +02:00
|
|
|
;; Show matching parenthesis on the minibuffer
|
|
|
|
(after! smartparens (show-smartparens-global-mode t))
|