emacs.d/bundle/bundle--qda.el

19 lines
1.3 KiB
EmacsLisp
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

(defvar mk--qda/questions '((general ("What does your typical weekday look like?" "Wie sieht Ihr typischer Arbeitstag aus?")
("Tell me about your role at your company?" "Erzählen Sie mir etwas über Ihre Rolle in Ihrem Unternehmen?"))
(task ("Whats the hardest part about [problem / task]?" "Was ist das Schwierigste an [Problem/Aufgabe]?")
("How do you currently go about [problem / task]?" "Wie gehen Sie derzeit [Problem/Aufgabe] an?")
("What is the biggest pain point related to [problem / task]?" "Was ist der größte Schmerzpunkt im Zusammenhang mit [Problem/Aufgabe]?"))))
(use-package subed
:config
;; Disable automatic movement of point by default
(add-hook 'subed-mode-hook 'subed-disable-sync-point-to-player)
;; Remember cursor position between sessions
(add-hook 'subed-mode-hook 'save-place-local-mode)
;; Break lines automatically while typing
(add-hook 'subed-mode-hook 'turn-on-auto-fill)
;; Break lines at 40 characters
(add-hook 'subed-mode-hook (lambda () (setq-local fill-column 40)))
(when (eq system-type 'windows-nt)
(when (directory-name-p "c:/msys64/")
(setq subed-mpv-executable "c:/msys64/mingw64/bin/mpv.exe"))))