diff options
| author | jdlugosz963 <jdlugosz963@gmail.com> | 2022-08-12 17:45:20 +0200 |
|---|---|---|
| committer | jdlugosz963 <jdlugosz963@gmail.com> | 2022-08-12 17:45:20 +0200 |
| commit | 9ff9098d793c4f05b77a7deb2f40c0470e9fe8ae (patch) | |
| tree | 8dead331cab261b6277d527d4bfed2db54b66507 /.doom.d/config.el | |
| parent | 1ee954a4c0173569d8c01358db073e40de2c9355 (diff) | |
| download | dotfiles-9ff9098d793c4f05b77a7deb2f40c0470e9fe8ae.tar.gz dotfiles-9ff9098d793c4f05b77a7deb2f40c0470e9fe8ae.zip | |
Remove doom emacs config
Diffstat (limited to '.doom.d/config.el')
| -rw-r--r-- | .doom.d/config.el | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/.doom.d/config.el b/.doom.d/config.el deleted file mode 100644 index 896b8ee..0000000 --- a/.doom.d/config.el +++ /dev/null | |||
| @@ -1,56 +0,0 @@ | |||
| 1 | (setq user-full-name "Jakub Dlugosz" | ||
| 2 | user-mail-address "jdlugosz963@gmail.com") | ||
| 3 | |||
| 4 | (setq doom-theme 'doom-dracula) | ||
| 5 | (setq doom-font (font-spec :family "Hack" :size 13)) | ||
| 6 | |||
| 7 | (setq org-directory "~/Documents/org/") | ||
| 8 | |||
| 9 | (setq display-line-numbers-type 'relative) | ||
| 10 | |||
| 11 | (setq org-babel-default-header-args:python | ||
| 12 | '((:session . "*python*") | ||
| 13 | (:results . "output"))) | ||
| 14 | |||
| 15 | (setq fancy-splash-image "~/.doom.d/doom.png") | ||
| 16 | |||
| 17 | |||
| 18 | (custom-set-faces | ||
| 19 | '(org-level-1 ((t (:inherit outline-1 :height 1.2)))) | ||
| 20 | '(org-level-2 ((t (:inherit outline-2 :height 1.1)))) | ||
| 21 | '(org-level-3 ((t (:inherit outline-3 :height 1.05)))) | ||
| 22 | '(org-level-4 ((t (:inherit outline-4 :height 1.025)))) | ||
| 23 | '(org-level-5 ((t (:inherit outline-5 :height 1.0))))) | ||
| 24 | |||
| 25 | (setq org-ellipsis " ▼ ") | ||
| 26 | |||
| 27 | (use-package! org-bullets | ||
| 28 | :after org | ||
| 29 | :hook (org-mode . org-bullets-mode) | ||
| 30 | :config (setq org-bullets-bullet-list '("◉" "●" "○" "◆" "●" "○" "◆"))) | ||
| 31 | |||
| 32 | (use-package org-roam | ||
| 33 | :ensure t | ||
| 34 | :custom | ||
| 35 | (org-roam-directory (file-truename "~/Documents/org/roam/")) | ||
| 36 | :bind (("C-c n l" . org-roam-buffer-toggle) | ||
| 37 | ("C-c n f" . org-roam-node-find) | ||
| 38 | ("C-c n g" . org-roam-graph) | ||
| 39 | ("C-c n i" . org-roam-node-insert) | ||
| 40 | ("C-c n c" . org-roam-capture) | ||
| 41 | ;; Dailies | ||
| 42 | ("C-c n j" . org-roam-dailies-capture-today)) | ||
| 43 | :config | ||
| 44 | ;; If you're using a vertical completion framework, you might want a more informative completion interface | ||
| 45 | (setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag))) | ||
| 46 | (org-roam-db-autosync-mode) | ||
| 47 | ;; If using org-roam-protocol | ||
| 48 | (require 'org-roam-protocol)) | ||
| 49 | |||
| 50 | (global-set-key (kbd "<f8>") 'org-tree-slide-mode) | ||
| 51 | (global-set-key (kbd "S-<f8>") 'org-tree-slide-skip-done-toggle) | ||
| 52 | |||
| 53 | (setq lsp-rust-server 'rust-analyzer) | ||
| 54 | |||
| 55 | (require 'twittering-mode) | ||
| 56 | (setq twittering-cert-file "/etc/ssl/cert.pem") | ||
