config/doom/data: add
This commit is contained in:
parent
8822a9d9d7
commit
b0f58c77e2
|
@ -0,0 +1,2 @@
|
|||
(("/home/janek/data/1-projects/productivity-design/interviews/interview-florin.org" nil "f3672ba90aa6575f952d4263274ca748") ("/home/janek/data/1-projects/done/design/interviews/interview-cem.org" ((10519 10632 "Prefers to read notes as pretty documents - visual aesthetic is important, even for terminal natives" "I find it easier to read personally. While I really enjoy org mode, I really don't like reading the syntax of it.") (7306 7749 "emacs dashboard show agenda + spamming mobile notifications -> always reminded, otherwise forgets checking" "I usually tend to forget about, like, checking my notes. But org mode is like really good that when I open Emacs, like things I have to do just flash onto my face. And I spam myself with mobile notifications. So I usually tend to look at them. Before, like, in other trackers, I always kept forgetting about checking my calendar.
|
||||
I have like the Emacs dashboard, which just opens and I have the agenda for today at the beginning of the screen.") (6008 6117 "terminal native hates fiddling in browser" "I've always been a terminal nerd. I... What did I use? I think I just used Google Calendar before. But like, ") (5045 5200 "non-standard format is a problem if there are no apps on other platforms" "But it is harder to sync between, like, my mobile phone and this, because they have a different file format than icalendar which is a really bugger for me.") (4610 4750 "P2P sync using syncthing, orgsly on mobile with notifications" "syncthing. I also have it on my phone. And I set it to, like, copy my org mode files on the desktop to my phone, which orgzly then reads it.") (4013 4162 "Does chores on a defined schedule, only \"bigger things\" go into agenda" "I usually like write down projects and bigger things, usually. I usually don't need to keep track of like groceries, I usually go in a two day basis.") (3616 3739 "Google Calendar integration in org agenda is still hacky - needs fetching function with filter" "I use a script to basically like, pull the icalendar file and convert it to org mode. I couldn't find a way to automize it.") (1898 1975 "every task gets a date" "for tasks I still schedule a date. So there is no different to do list for me") (1104 1202 "emacs org agenda: From Google Calendar & life file" "I usually pull my Google calendar to the agenda. And like, add my personal stuff on to it as well.") (452 460 "personal projects: judged as non-urgent - urgency=importance" "Yeah the")) "02e835e9e4e96794fe468cb8e3595626") ("/home/janek/data/1-projects/done/design/interviews/interview-florin.org" ((9897 10006 "Emuliert Papier -> Pluspunkt" "es emuliert eigentlich quasi so dieses auf papier schreiben gefühl, aber deswegen mag ich das vielleicht auch") (5915 5980 "no task-archive - prefers blank slate" " nö, am ende des Tages lösche ich die, dann is quasi blank slate,") (5333 5337 "word statt todo-app -> text-based productivity, flexibility, manual coloring" "Word")) "6f6ebb968f2a430e8ba521af07c2f5f9"))
|
|
@ -0,0 +1,9 @@
|
|||
personal_ws-1.1 en 8
|
||||
Janek
|
||||
Janetzko
|
||||
LilyPond
|
||||
Lune
|
||||
MuseScore
|
||||
PlantUML
|
||||
animalistic
|
||||
superstimuli
|
|
@ -0,0 +1,29 @@
|
|||
;;; test.el -*- lexical-binding: t; -*-
|
||||
(let ((hunspell-found-dicts
|
||||
(split-string
|
||||
(with-temp-buffer
|
||||
(ispell-call-process "hunspell"
|
||||
null-device
|
||||
t
|
||||
nil
|
||||
"-D"
|
||||
;; Use -a to prevent Hunspell from
|
||||
;; trying to initialize its
|
||||
;; curses/termcap UI, which causes it
|
||||
;; to crash or fail to start in some
|
||||
;; MS-Windows ports.
|
||||
"-a"
|
||||
;; Hunspell 1.7.0 (and later?) won't
|
||||
;; show LOADED DICTIONARY unless
|
||||
;; there's at least one file argument
|
||||
;; on the command line. So we feed
|
||||
;; it with the null device.
|
||||
null-device)
|
||||
(buffer-string))
|
||||
"[\n\r]+"
|
||||
t))
|
||||
hunspell-default-dict
|
||||
hunspell-default-dict-entry
|
||||
hunspell-multi-dict)
|
||||
(message hunspell-found-dicts)
|
||||
)
|
Loading…
Reference in New Issue