summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.doom.d/config.el56
-rw-r--r--.doom.d/custom.el20
-rw-r--r--.doom.d/doom.pngbin53691 -> 0 bytes
-rw-r--r--.doom.d/init.el190
-rw-r--r--.doom.d/packages.el54
5 files changed, 0 insertions, 320 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")
diff --git a/.doom.d/custom.el b/.doom.d/custom.el
deleted file mode 100644
index d44fb92..0000000
--- a/.doom.d/custom.el
+++ /dev/null
@@ -1,20 +0,0 @@
1(custom-set-variables
2 ;; custom-set-variables was added by Custom.
3 ;; If you edit it by hand, you could mess it up, so be careful.
4 ;; Your init file should contain only one such instance.
5 ;; If there is more than one, they won't work right.
6 '(custom-safe-themes
7 '("1bddd01e6851f5c4336f7d16c56934513d41cc3d0233863760d1798e74809b4b" "4a5aa2ccb3fa837f322276c060ea8a3d10181fecbd1b74cb97df8e191b214313" "1d5e33500bc9548f800f9e248b57d1b2a9ecde79cb40c0b1398dec51ee820daf" default))
8 '(package-selected-packages
9 '(lsp-java python-django dockerfile-mode dired-ranger lsp-mode ## diredc diff-hl))
10 '(warning-suppress-types '((dired-mode-hook) (dired-mode-hook))))
11(custom-set-faces
12 ;; custom-set-faces was added by Custom.
13 ;; If you edit it by hand, you could mess it up, so be careful.
14 ;; Your init file should contain only one such instance.
15 ;; If there is more than one, they won't work right.
16 '(org-level-1 ((t (:inherit outline-1 :height 1.2))))
17 '(org-level-2 ((t (:inherit outline-2 :height 1.1))))
18 '(org-level-3 ((t (:inherit outline-3 :height 1.05))))
19 '(org-level-4 ((t (:inherit outline-4 :height 1.025))))
20 '(org-level-5 ((t (:inherit outline-5 :height 1.0)))))
diff --git a/.doom.d/doom.png b/.doom.d/doom.png
deleted file mode 100644
index 4020f33..0000000
--- a/.doom.d/doom.png
+++ /dev/null
Binary files differ
diff --git a/.doom.d/init.el b/.doom.d/init.el
deleted file mode 100644
index 7260c69..0000000
--- a/.doom.d/init.el
+++ /dev/null
@@ -1,190 +0,0 @@
1;;; init.el -*- lexical-binding: t; -*-
2
3;; This file controls what Doom modules are enabled and what order they load
4;; in. Remember to run 'doom sync' after modifying it!
5
6;; NOTE Press 'SPC h d h' (or 'C-h d h' for non-vim users) to access Doom's
7;; documentation. There you'll find a "Module Index" link where you'll find
8;; a comprehensive list of Doom's modules and what flags they support.
9
10;; NOTE Move your cursor over a module's name (or its flags) and press 'K' (or
11;; 'C-c c k' for non-vim users) to view its documentation. This works on
12;; flags as well (those symbols that start with a plus).
13;;
14;; Alternatively, press 'gd' (or 'C-c c d') on a module to browse its
15;; directory (for easy access to its source code).
16
17(doom! :input
18 ;;chinese
19 ;;japanese
20 ;;layout ; auie,ctsrnm is the superior home row
21
22 :completion
23 company ; the ultimate code completion backend
24 ;;helm ; the *other* search engine for love and life
25 ;;ido ; the other *other* search engine...
26 ;;ivy ; a search engine for love and life
27 vertico ; the search engine of the future
28
29 :ui
30 ;;deft ; notational velocity for Emacs
31 doom ; what makes DOOM look the way it does
32 doom-dashboard ; a nifty splash screen for Emacs
33 doom-quit ; DOOM quit-message prompts when you quit Emacs
34 (emoji +unicode) ; 🙂
35 hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW
36 ;;hydra
37 ;;indent-guides ; highlighted indent columns
38 ;;ligatures ; ligatures and symbols to make your code pretty again
39 minimap ; show a map of the code on the side
40 modeline ; snazzy, Atom-inspired modeline, plus API
41 ;;nav-flash ; blink cursor line after big motions
42 ;;neotree ; a project drawer, like NERDTree for vim
43 ophints ; highlight the region an operation acts on
44 (popup +defaults) ; tame sudden yet inevitable temporary windows
45 ;;tabs ; a tab bar for Emacs
46 treemacs ; a project drawer, like neotree but cooler
47 ;;unicode ; extended unicode support for various languages
48 vc-gutter ; vcs diff in the fringe
49 vi-tilde-fringe ; fringe tildes to mark beyond EOB
50 ;;window-select ; visually switch windows
51 workspaces ; tab emulation, persistence & separate workspaces
52 ;;zen ; distraction-free coding or writing
53
54 :editor
55 (evil +everywhere); come to the dark side, we have cookies
56 file-templates ; auto-snippets for empty files
57 fold ; (nigh) universal code folding
58 ;;(format +onsave) ; automated prettiness
59 ;;god ; run Emacs commands without modifier keys
60 ;;lispy ; vim for lisp, for people who don't like vim
61 ;;multiple-cursors ; editing in many places at once
62 ;;objed ; text object editing for the innocent
63 ;;parinfer ; turn lisp into python, sort of
64 ;;rotate-text ; cycle region at point between text candidates
65 snippets ; my elves. They type so I don't have to
66 ;;word-wrap ; soft wrapping with language-aware indent
67
68 :emacs
69 dired ; making dired pretty [functional]
70 electric ; smarter, keyword-based electric-indent
71 ;;ibuffer ; interactive buffer management
72 undo ; persistent, smarter undo for your inevitable mistakes
73 vc ; version-control and Emacs, sitting in a tree
74
75 :term
76 eshell ; the elisp shell that works everywhere
77 ;;shell ; simple shell REPL for Emacs
78 ;;term ; basic terminal emulator for Emacs
79 vterm ; the best terminal emulation in Emacs
80
81 :checkers
82 syntax ; tasing you for every semicolon you forget
83 ;;(spell +flyspell) ; tasing you for misspelling mispelling
84 ;;grammar ; tasing grammar mistake every you make
85
86 :tools
87 ;;ansible
88 ;;biblio ; Writes a PhD for you (citation needed)
89 ;;debugger ; FIXME stepping through code, to help you add bugs
90 ;;direnv
91 ;;docker
92 ;;editorconfig ; let someone else argue about tabs vs spaces
93 ;;ein ; tame Jupyter notebooks with emacs
94 (eval +overlay) ; run code, run (also, repls)
95 ;;gist ; interacting with github gists
96 lookup ; navigate your code and its documentation
97 lsp ; M-x vscode
98 magit ; a git porcelain for Emacs
99 ;;make ; run make tasks from Emacs
100 ;;pass ; password manager for nerds
101 pdf ; pdf enhancements
102 ;;prodigy ; FIXME managing external services & code builders
103 ;;rgb ; creating color strings
104 ;;taskrunner ; taskrunner for all your projects
105 ;;terraform ; infrastructure as code
106 ;;tmux ; an API for interacting with tmux
107 ;;upload ; map local to remote projects via ssh/ftp
108
109 :os
110 ;;(:if IS-MAC macos) ; improve compatibility with macOS
111 ;;tty ; improve the terminal Emacs experience
112
113 :lang
114 ;;agda ; types of types of types of types...
115 ;;beancount ; mind the GAAP
116 ;;cc ; C > C++ == 1
117 ;;clojure ; java with a lisp
118 ;;common-lisp ; if you've seen one lisp, you've seen them all
119 ;;coq ; proofs-as-programs
120 ;;crystal ; ruby at the speed of c
121 ;;csharp ; unity, .NET, and mono shenanigans
122 ;;data ; config/data formats
123 ;;(dart +flutter) ; paint ui and not much else
124 ;;dhall
125 ;;elixir ; erlang done right
126 ;;elm ; care for a cup of TEA?
127 emacs-lisp ; drown in parentheses
128 ;;erlang ; an elegant language for a more civilized age
129 ;;ess ; emacs speaks statistics
130 ;;factor
131 ;;faust ; dsp, but you get to keep your soul
132 ;;fsharp ; ML stands for Microsoft's Language
133 ;;fstar ; (dependent) types and (monadic) effects and Z3
134 ;;gdscript ; the language you waited for
135 ;;(go +lsp) ; the hipster dialect
136 ;;(haskell +lsp) ; a language that's lazier than I am
137 ;;hy ; readability of scheme w/ speed of python
138 ;;idris ; a language you can depend on
139 json ; At least it ain't XML
140 ;;(java +meghanada) ; the poster child for carpal tunnel syndrome
141 javascript ; all(hope(abandon(ye(who(enter(here))))))
142 ;;julia ; a better, faster MATLAB
143 ;;kotlin ; a better, slicker Java(Script)
144 ;;latex ; writing papers in Emacs has never been so fun
145 ;;lean ; for folks with too much to prove
146 ;;ledger ; be audit you can be
147 ;;lua ; one-based indices? one-based indices
148 markdown ; writing docs for people to ignore
149 ;;nim ; python + lisp at the speed of c
150 ;;nix ; I hereby declare "nix geht mehr!"
151 ;;ocaml ; an objective camel
152 org ; organize your plain life in plain text
153 ;;php ; perl's insecure younger brother
154 ;;plantuml ; diagrams for confusing people more
155 ;;purescript ; javascript, but functional
156 python ; beautiful is better than ugly
157 ;;qt ; the 'cutest' gui framework ever
158 ;;racket ; a DSL for DSLs
159 ;;raku ; the artist formerly known as perl6
160 rest ; Emacs as a REST client
161 ;;rst ; ReST in peace
162 ;;(ruby +rails) ; 1.step {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"}
163 rust ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
164 ;;scala ; java, but good
165 ;;(scheme +guile) ; a fully conniving family of lisps
166 sh ; she sells {ba,z,fi}sh shells on the C xor
167 ;;sml
168 ;;solidity ; do you need a blockchain? No.
169 ;;swift ; who asked for emoji variables?
170 ;;terra ; Earth and Moon in alignment for performance.
171 web ; the tubes
172 ;;yaml ; JSON, but readable
173 ;;zig ; C, but simpler
174
175 :email
176 (mu4e +org +gmail)
177 ;;notmuch
178 ;;(wanderlust +gmail)
179
180 :app
181 calendar
182 emms
183 everywhere ; *leave* Emacs!? You must be joking
184 irc ; how neckbeards socialize
185 ;;(rss +org) ; emacs as an RSS reader
186 twitter ; twitter client https://twitter.com/vnought
187
188 :config
189 ;;literate
190 (default +bindings +smartparens))
diff --git a/.doom.d/packages.el b/.doom.d/packages.el
deleted file mode 100644
index 69a9d74..0000000
--- a/.doom.d/packages.el
+++ /dev/null
@@ -1,54 +0,0 @@
1;; -*- no-byte-compile: t; -*-
2;;; $DOOMDIR/packages.el
3
4;; To install a package with Doom you must declare them here and run 'doom sync'
5;; on the command line, then restart Emacs for the changes to take effect -- or
6;; use 'M-x doom/reload'.
7
8
9;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror:
10;(package! some-package)
11
12;; To install a package directly from a remote git repo, you must specify a
13;; `:recipe'. You'll find documentation on what `:recipe' accepts here:
14;; https://github.com/raxod502/straight.el#the-recipe-format
15;(package! another-package
16; :recipe (:host github :repo "username/repo"))
17
18;; If the package you are trying to install does not contain a PACKAGENAME.el
19;; file, or is located in a subdirectory of the repo, you'll need to specify
20;; `:files' in the `:recipe':
21;(package! this-package
22; :recipe (:host github :repo "username/repo"
23; :files ("some-file.el" "src/lisp/*.el")))
24
25;; If you'd like to disable a package included with Doom, you can do so here
26;; with the `:disable' property:
27;(package! builtin-package :disable t)
28
29;; You can override the recipe of a built in package without having to specify
30;; all the properties for `:recipe'. These will inherit the rest of its recipe
31;; from Doom or MELPA/ELPA/Emacsmirror:
32;(package! builtin-package :recipe (:nonrecursive t))
33;(package! builtin-package-2 :recipe (:repo "myfork/package"))
34
35;; Specify a `:branch' to install a package from a particular branch or tag.
36;; This is required for some packages whose default branch isn't 'master' (which
37;; our package manager can't deal with; see raxod502/straight.el#279)
38;(package! builtin-package :recipe (:branch "develop"))
39
40;; Use `:pin' to specify a particular commit to install.
41;(package! builtin-package :pin "1a2b3c4d5e")
42
43
44;; Doom's packages are pinned to a specific commit and updated from release to
45;; release. The `unpin!' macro allows you to unpin single packages...
46;(unpin! pinned-package)
47;; ...or multiple packages
48;(unpin! pinned-package another-pinned-package)
49;; ...Or *all* packages (NOT RECOMMENDED; will likely break things)
50;(unpin! t)
51
52(package! org-roam)
53(package! org-tree-slide)
54(package! org-bullets)