qwe
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; $DOOMDIR/config.el -*- lexical-binding: t; -*- | |
(setq | |
user-full-name "Miroslav Toman" | |
user-mail-address "toman@fastmail.com" | |
;; doom-theme 'doom-sourcerer | |
doom-theme 'doom-gruvbox | |
; doom-font (font-spec :family "Essential Pragmata Pro" :size 18) | |
doom-font (font-spec :family "Tamzen" :size 16) | |
doom-big-font (font-spec :family "Essential Pragmata Pro" :size 24) | |
projectile-project-search-path "~/git/" | |
org-directory "~/org/" | |
) | |
(use-package deft | |
:after org | |
:custom | |
(deft-recursive t) | |
(deft-use-filter-string-for-filename t) | |
(deft-default-extension "org") | |
(deft-directory "~/org/")) | |
(define-key evil-insert-state-map (kbd "C-c") 'evil-normal-state) | |
(use-package org-journal | |
:custom | |
(org-journal-dir "~/org/journal/") | |
(org-journal-date-prefix "#+TITLE: ") | |
(org-journal-file-format "%Y-%m-%d.org") | |
(org-journal-date-format "%A, %d %B %Y")) | |
(provide 'config) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment