From 4223d65b15b091514b90079ba0db52990e100215 Mon Sep 17 00:00:00 2001 From: proenz Date: Thu, 25 Dec 2025 10:56:27 +0100 Subject: [PATCH] neue Dateien --- .config/alacritty/alacritty.toml | 50 ++++ .config/doom/config.el | 496 +++++++++++++++++++++++++++++++ .config/doom/custom.el | 19 ++ .config/doom/eshell/aliases | 10 + .config/doom/init.el | 196 ++++++++++++ .config/doom/packages.el | 63 ++++ .vimrc | 68 +++++ README.org | 1 + 8 files changed, 903 insertions(+) create mode 100644 .config/alacritty/alacritty.toml create mode 100644 .config/doom/config.el create mode 100644 .config/doom/custom.el create mode 100644 .config/doom/eshell/aliases create mode 100644 .config/doom/init.el create mode 100644 .config/doom/packages.el create mode 100644 .vimrc diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml new file mode 100644 index 0000000..ed68b16 --- /dev/null +++ b/.config/alacritty/alacritty.toml @@ -0,0 +1,50 @@ +[colors] +draw_bold_text_with_bright_colors = true + +[colors.primary] +background = "#121212" + +[cursor] +style = {shape = "Block", blinking = "Always"} +vi_mode_style = {shape = "Block", blinking = "On"} +blink_interval = 750 +blink_timeout = 5 +unfocused_hollow = true +thickness = 0.2 + +[env] +TERM = "xterm-256color" + +[font] +size = 11.0 + +[font.bold] +family = "Ubuntu Mono" +style = "Bold" + +[font.bold_italic] +family = "Ubuntu Mono" +style = "Bold Italic" + +[font.italic] +family = "Ubuntu Mono" +style = "Italic" + +[font.normal] +family = "Ubuntu Mono" +style = "Regular" + +[window] +decorations = "none" +decorations_theme_variant = "Dark" +dynamic_title = true +opacity = 0.82 +title = "Alacritty" + +[window.class] +general = "Alacritty" +instance = "Alacritty" + +[window.padding] +x = 5 +y = 5 diff --git a/.config/doom/config.el b/.config/doom/config.el new file mode 100644 index 0000000..d5fd115 --- /dev/null +++ b/.config/doom/config.el @@ -0,0 +1,496 @@ +;general keybindings +(map! :leader + :desc "insert header" "i h" #'my-insert-header) +(map! :leader + :desc "insert icons" "i i" #'all-the-icons-insert) +(map! :leader + :desc "Org babel tangle" "m B" #'org-babel-tangle) +(map! :leader + :desc "sort lines" "m S" #'sort-lines) + +;open elfeed +(map! :leader + :desc "elfeed" "o n" #'elfeed) + +;open personal files +(map! :leader + (:prefix ("f o" . "open personal files") + :desc "open doomconfig" "c" #'(lambda () (interactive) (find-file "~/Nextcloud/Dokumente/org_files/config_doom_emacs.org")) + :desc "open notes" "n" #'(lambda () (interactive) (find-file "~/Nextcloud/Dokumente/org_files/notes.org")) + :desc "open todo_firma" "f" #'(lambda () (interactive) (find-file "~/Nextcloud/Dokumente/org_files/todo_firma.org")) + :desc "open todo_securepoint" "s" #'(lambda () (interactive) (find-file "~/Nextcloud/Dokumente/org_files/todo_securepoint.org")) + :desc "open todo" "t" #'(lambda () (interactive) (find-file "~/Nextcloud/Dokumente/org_files/todo.org")))) + +;org-agenda +(map! :after org-agenda + :map org-agenda-mode-map + "z m" #'org-agenda-month-view) + +(setq-default indent-tabs-mode nil) +(setq-default tab-width 4) +;;(setq indent-line-function 'insert-tab) + +(beacon-mode 1) + +(setq user-full-name "Manuel Prinz" + user-mail-address "maprinz@gmx.de") + +;;############################################################################# +(require 'elfeed) +(require 'elfeed-org) +(require 'elfeed-goodies) +(elfeed-org) +(setq rmh-elfeed-org-files (list "~/Nextcloud/Dokumente/org_files/elfeed.org")) + +(elfeed-goodies/setup) + +(setq elfeed-search-date-format '("%y-%m-%d" 10 :left)) + +(add-hook! 'elfeed-search-mode-hook #'elfeed-update) + +(setq doom-font (font-spec :family "Ubuntu Mono" :size 16) + doom-variable-pitch-font (font-spec :family "Ubuntu Mono" :size 21) + doom-big-font (font-spec :family "Ubuntu Mono" :size 18)) +(after! doom-themes + (setq doom-themes-enable-bold t + doom-themes-enable-italic t)) +(custom-set-faces! + '(font-lock-comment-face :slant italic) + '(font-lock-keyword-face :slant italic)) + +;; set default theme +(setq doom-theme 'doom-one + doom-themes-enable-bold t + doom-themes-enable-italic t) + +;; add transparency to backgroound +(add-to-list 'default-frame-alist '(alpha-background . 95)) + +;; line numbers relative +(setq display-line-numbers-type 'relative) + +;;; :editor evil +;; Focus new window after splitting +(setq evil-split-window-below t + evil-vsplit-window-right t) + +(setq org-journal-dir "~/Nextcloud/Dokumente/org_files/journal/" + org-journal-file-format "%Y%m" + org-journal-file-type 'monthly + org-journal-date-format "%A, %d %B %Y") +(require 'org-journal) + +(use-package all-the-icons + :diminish) + +(use-package all-the-icons-dired + :defer t + :after (dired) + :diminish + :init + :config (setq all-the-icons-dired-monochrome nil) + (add-hook 'dired-mode-hook 'all-the-icons-dired-mode)) + +(setq all-the-icons-scale-factor 1.0) + +(use-package doom-modeline + :ensure t + :init (doom-modeline-mode 1) + :config + (setq doom-modeline-icon t + doom-modeline-height 20 + doom-modeline-major-mode-icon t + doom-modeline-major-mode-color-icon t + doom-modeline-buffer-state-icon t + doom-modeline-buffer-modification-icon t + doom-modeline-modal-modern-icon t + doom-modeline-buffer-file-name-style 'truncate-nil)) + +;;(require 'org-superstar) +;;(add-hook 'org-mode-hook (lambda () (org-superstar-mode 1))) + +(after! org + (add-to-list 'org-export-backends 'latex) + (setq org-directory "~/Nextcloud/Dokumente/org_files/" + ;;org-superstar-headline-bullets-list '("◉" "●" "○" "◆" "●" "○" "◆") + ;;org-modern-replace-stars "◉●○◆●○◆" + ;;org-superstar-item-bullet-alist '((?+ . ?➤) (?- . ?✦)) + ;;org-hide-emphasis-markers t + ;;org-ellipsis " ▼ ")) + org-modern-hide-stars nil + org-modern-list '((?+ . "➤") (?- . "✦")) + org-modern-fold-stars '(("▸" . "▼") ("▹" . "▿") ("▸" . "▾") ("▹" . "▿")) + org-modern-label-border 1 + )) + +;; changes the font size of the headlines, f.e. 1.2 increases the font size about 20% +(custom-set-faces + '(org-level-1 ((t (:inherit outline-1 :foreground "mediumslateblue" :height 1.15)))) + '(org-level-2 ((t (:inherit outline-2 :foreground "coral" :height 1.0)))) + '(org-level-3 ((t (:inherit outline-3 :height 1.0)))) + '(org-level-4 ((t (:inherit outline-4 :height 1.0)))) + '(org-level-5 ((t (:inherit outline-5 :height 1.0)))) +) + +(after! org-capture + (add-to-list 'org-capture-templates + '("f" "Todo Firma" entry + (file+headline "~/Nextcloud/Dokumente/org_files/todo_firma.org" "zu erledigen") + "* TODO %T %?\n %i")) + (add-to-list 'org-capture-templates + '("F" "Agenda Firma" entry + (file "~/Nextcloud/Dokumente/org_files/agenda/todo_work.org") + "* TODO %?")) + (add-to-list 'org-capture-templates + '("P" "Agenda privat" entry + (file "~/Nextcloud/Dokumente/org_files/agenda/todo_private.org") + "* TODO %?")) + (add-to-list 'org-capture-templates + '("s" "Todo Securepoint" entry + (file+headline "~/Nextcloud/Dokumente/org_files/todo_securepoint.org" "zu erledigen") + "* TODO %T %?\n %i")) +) + +(after! org-roam + (setq org-roam-directory "~/Nextcloud/Dokumente/org_files/roam") + (setq org-roam-capture-templates + '( + ("a" "Anleitung" plain + "* TODO Anleitung ${title} schreiben\n:PROPERTIES:\n:CATEGORY: roam\n:END:\n%?" + :if-new (file+head "%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n#+date: %<%d.%m.%Y>\n\n") + :unnarrowed t) + ("d" "default" plain + "%?" + :if-new (file+head "%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n") + :unnarrowed t) + ) + ) +) + +;; (define-globalized-minor-mode global-rainbow-mode rainbow-mode +;; (lambda () +;; (when (not (memq major-mode +;; (list 'org-agenda-mode 'org-roam-mode 'elfeed-search-mode 'elfeed-show-mode))) +;; (rainbow-mode 1)))) +;; (global-rainbow-mode 1 ) + +;; allgmeine Einstellungen +(after! org + (setq calendar-week-start-day 1 + diary-file "~/Nextcloud/Dokumente/org_files/agenda/diary.org" + org-agenda-entry-text-maxlines 5 + org-agenda-files "~/Nextcloud/Dokumente/org_files/agenda/agenda.org" + org-agenda-start-with-entry-text-mode nil + org-agenda-todo-ignore-scheduled t + org-agenda-with-colors t + org-agenda-include-diary t + holiday-oriental-holidays nil + holiday-islamic-holidays nil + holiday-bahai-holidays nil + holiday-solar-holidays nil + holiday-hebrew-holidays nil + calendar-day-name-array ["Sonntag" "Montag" "Dienstag" "Mittwoch" + "Donnerstag" "Freitag" "Samstag"] + calendar-month-name-array ["Januar" "Februar" "März" "April" "Mai" + "Juni" "Juli" "August" "September" + "Oktober" "November" "Dezember"] + ) +) + +(add-hook 'calendar-load-hook + (lambda () + (calendar-set-date-style 'european))) + +(setq org-agenda-category-icon-alist + `( + ("Firma" ,(list (all-the-icons-faicon "building-o")) nil nil :ascent center) + ("privat" ,(list (all-the-icons-faicon "home")) nil nil :ascent center) + ("Geb" ,(list (all-the-icons-faicon "birthday-cake")) nil nil :ascent center) + ("Urlaub" ,(list (all-the-icons-material "wb_sunny")) nil nil :ascent center) + ("diary" ,(list (all-the-icons-material "today")) nil nil :ascent center) + ("roam" ,(list (all-the-icons-faicon "pencil")) nil nil :ascent center) + ) +) + +;; automatisches Speichern beim Ändern der Termine in der Übersicht. +;; (advice-add 'org-deadline :after 'org-save-all-org-buffers) +;; (advice-add 'org-schedule :after 'org-save-all-org-buffers) +;; (advice-add 'org-store-log-note :after 'org-save-all-org-buffers) +;; (advice-add 'org-todo :after 'org-save-all-org-buffers) + +;; benutzerdefinierte Übersichten +(setq org-agenda-custom-commands + '( + ("o" "Übersicht" + ( + (tags "PRIORITY=\"A\"" + ( + (org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done)) + (org-agenda-overriding-header "\noffene Aufgaben mit hoher Priorität:\n") + ) + ) + (agenda "" + ((org-agenda-span 3) + (org-agenda-start-day "+0") + (org-agenda-overriding-header "die nächsten 3 Tage:\n") + ) + ) + (alltodo "" + ((org-agenda-overriding-header "alle noch offenen TODOs:\n")) + ) + ) + ) + ("p" "private Termine" agenda "" + ( + (org-agenda-files '("~/Nextcloud/Dokumente/org_files/agenda/todo_private.org" + "~/Nextcloud/Dokumente/org_files/agenda/special_days.org")) + (org-agenda-start-with-entry-text-mode 1) + (org-agenda-start-on-weekday 1) + (org-agenda-start-day "+0") + (org-agenda-span 7) + (org-agenda-overriding-header "\n die aktuelle Woche:\n") + ) + ) + ("P" "privat TODO" + ((tags-todo "CATEGORY=\"privat\"" + ( + (org-agenda-overriding-header "\nprivate TODOs ohne Termin:\n") + (org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done 'scheduled)) + ) + ) + (tags-todo "CATEGORY=\"roam\"" + ( + (org-agenda-overriding-header "Anleitungen noch fertig schreiben:\n") + (org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done 'scheduled)) + ) + )) + ) + ("f" "Termine Firma" agenda "" + ( + (org-agenda-files '("~/Nextcloud/Dokumente/org_files/agenda/todo_work.org" + "~/Nextcloud/Dokumente/org_files/agenda/special_days.org")) + (org-agenda-start-with-entry-text-mode 1) + (org-agenda-start-on-weekday 1) + (org-agenda-start-day "+0") + (org-agenda-span 5) + (org-agenda-overriding-header "\n die aktuelle Woche:\n") + ) + ) + ("F" "Firma TODO" + ((tags-todo "CATEGORY=\"Firma\"" + ( + (org-agenda-overriding-header "\nTODOs Firma ohne Termin:\n") + (org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done 'scheduled)) + ) + )) + ) + ) +) + +;; Feiertage +(setq solar-n-hemi-seasons + '("Frühlingsanfang" "Sommeranfang" "Herbstanfang" "Winteranfang")) + +(setq holiday-general-holidays + '((holiday-fixed 1 1 "Neujahr") + (holiday-fixed 5 1 "1. Mai") + (holiday-fixed 10 3 "Tag der Deutschen Einheit"))) + +;; Feiertage für NRW, weitere auskommentiert +(setq holiday-christian-holidays + '((holiday-float 12 0 -4 "1. Advent" 24) + (holiday-float 12 0 -3 "2. Advent" 24) + (holiday-float 12 0 -2 "3. Advent" 24) + (holiday-float 12 0 -1 "4. Advent" 24) + (holiday-fixed 12 6 "Nikolaus") + (holiday-fixed 12 24 "Heiligabend") + (holiday-fixed 12 25 "1. Weihnachtstag") + (holiday-fixed 12 26 "2. Weihnachtstag") + (holiday-fixed 12 31 "Silvester") + (holiday-fixed 1 6 "Heilige Drei Könige") + (holiday-easter-etc -48 "Rosenmontag") + (holiday-easter-etc -3 "Gründonnerstag") + (holiday-easter-etc -2 "Karfreitag") + (holiday-easter-etc 0 "Ostersonntag") + (holiday-easter-etc +1 "Ostermontag") + (holiday-easter-etc +39 "Christi Himmelfahrt") + (holiday-easter-etc +49 "Pfingstsonntag") + (holiday-easter-etc +50 "Pfingstmontag") + (holiday-easter-etc +60 "Fronleichnam") + (holiday-fixed 8 15 "Mariae Himmelfahrt") + (holiday-fixed 11 1 "Allerheiligen") + (holiday-float 11 3 1 "Buss- und Bettag" 16) + (holiday-float 11 0 1 "Totensonntag" 20))) + +;; Farben +;; (add-hook 'org-finalize-agenda-hook +;; (lambda () +;; (save-excursion +;; (color-org-header "privat" "green") +;; (color-org-header "Geb:" "gold") +;; (color-org-header "Firma" "orange") +;; (color-org-header "Urlaub" "SkyBlue4")))) + +;; (defun color-org-header (tag col) +;; "" +;; (interactive) +;; (goto-char (point-min)) +;; (while (re-search-forward tag nil t) +;; (add-face-text-property (match-beginning 0) (point-at-eol) '(:foreground col) 'append) +;; ) +;; ) + +;; Zeit in Sekunden, bis die Vorschlagsliste aufgeht. +(setq company-idle-delay + (lambda () (if (company-in-string-or-comment) nil 1.5))) + +(defun my-insert-header () + "Insert header for scripts" + (interactive) + (insert-file-contents "~/Nextcloud/Dokumente/org_files/header.txt")) + +;; ;;; Configure Package Archives ----------------------------- + +;; ;; Initialize package sources +;; (require 'package) + +;; ;; This will be needed if you decide to use doom-themes! +;; (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/")) + +;; ;; Set up package.el and refresh package archives if it hasn't been done yet +;; (package-initialize) +;; (unless package-archive-contents +;; (package-refresh-contents)) + +;; ;;; Basic Appearance --------------------------------------- + +;; ;; More minimal UI +;; (setq inhibit-startup-screen t) +;; (menu-bar-mode 0) +;; (tool-bar-mode 0) +;; (scroll-bar-mode 0) + +;; ;; Let the desktop background show through +;; ;(set-frame-parameter (selected-frame) 'alpha '(97 . 100)) +;; ;(add-to-list 'default-frame-alist '(alpha . (90 . 90))) + +;; ;;; Theme and Fonts ---------------------------------------- + +;; ;; Install doom-themes +;; ;(unless (package-installed-p 'doom-themes) +;; ; (package-install 'doom-themes)) + +;; ;; Load up doom-palenight for the System Crafters look +;; ;(load-theme 'doom-palenight t) + +;; ;; Set reusable font name variables +;; (defvar my/fixed-width-font "JetBrains Mono" +;; "The font to use for monospaced (fixed width) text.") + +;; (defvar my/variable-width-font "Iosevka Aile" +;; "The font to use for variable-pitch (document) text.") + +;; ;; NOTE: These settings might not be ideal for your machine, tweak them as needed! +;; (set-face-attribute 'default nil :font my/fixed-width-font :weight 'light :height 180) +;; (set-face-attribute 'fixed-pitch nil :font my/fixed-width-font :weight 'light :height 190) +;; (set-face-attribute 'variable-pitch nil :font my/variable-width-font :weight 'light :height 1.3) + +;; ;;; Org Mode Appearance ------------------------------------ + +;; ;; Load org-faces to make sure we can set appropriate faces +;; (require 'org-faces) + +;; ;; Hide emphasis markers on formatted text +;; (setq org-hide-emphasis-markers t) + +;; ;; Resize Org headings +;; (dolist (face '((org-level-1 . 1.2) +;; (org-level-2 . 1.1) +;; (org-level-3 . 1.05) +;; (org-level-4 . 1.0) +;; (org-level-5 . 1.1) +;; (org-level-6 . 1.1) +;; (org-level-7 . 1.1) +;; (org-level-8 . 1.1))) +;; (set-face-attribute (car face) nil :font my/variable-width-font :weight 'medium :height (cdr face))) + +;; ;; Make the document title a bit bigger +;; (set-face-attribute 'org-document-title nil :font my/variable-width-font :weight 'bold :height 1.3) + +;; ;; Make sure certain org faces use the fixed-pitch face when variable-pitch-mode is on +;; (set-face-attribute 'org-block nil :foreground nil :inherit 'fixed-pitch) +;; (set-face-attribute 'org-table nil :inherit 'fixed-pitch) +;; (set-face-attribute 'org-formula nil :inherit 'fixed-pitch) +;; (set-face-attribute 'org-code nil :inherit '(shadow fixed-pitch)) +;; (set-face-attribute 'org-verbatim nil :inherit '(shadow fixed-pitch)) +;; (set-face-attribute 'org-special-keyword nil :inherit '(font-lock-comment-face fixed-pitch)) +;; (set-face-attribute 'org-meta-line nil :inherit '(font-lock-comment-face fixed-pitch)) +;; (set-face-attribute 'org-checkbox nil :inherit 'fixed-pitch) + +;; ;;; Centering Org Documents -------------------------------- + +;; ;; Install visual-fill-column +;; (unless (package-installed-p 'visual-fill-column) +;; (package-install 'visual-fill-column)) + +;; ;; Configure fill width +;; (setq visual-fill-column-width 110 +;; visual-fill-column-center-text t) + +;; ;;; Org Present -------------------------------------------- + +;; ;; Install org-present if needed +;; (unless (package-installed-p 'org-present) +;; (package-install 'org-present)) + +;; (defun my/org-present-prepare-slide (buffer-name heading) +;; ;; Show only top-level headlines +;; (org-overview) + +;; ;; Unfold the current entry +;; (org-show-entry) + +;; ;; Show only direct subheadings of the slide but don't expand them +;; (org-show-children)) + +;; (defun my/org-present-start () +;; ;; Tweak font sizes +;; (setq-local face-remapping-alist '((default (:height 1.5) variable-pitch) +;; (header-line (:height 4.0) variable-pitch) +;; (org-document-title (:height 1.75) org-document-title) +;; (org-code (:height 1.55) org-code) +;; (org-verbatim (:height 1.55) org-verbatim) +;; (org-block (:height 1.25) org-block) +;; (org-block-begin-line (:height 0.7) org-block))) + +;; ;; Set a blank header line string to create blank space at the top +;; (setq header-line-format " ") + +;; ;; Display inline images automatically +;; (org-display-inline-images) + +;; ;; Center the presentation and wrap lines +;; (visual-fill-column-mode 1) +;; (visual-line-mode 1)) + +;; (defun my/org-present-end () +;; ;; Reset font customizations +;; (setq-local face-remapping-alist '((default variable-pitch default))) + +;; ;; Clear the header line string so that it isn't displayed +;; (setq header-line-format nil) + +;; ;; Stop displaying inline images +;; (org-remove-inline-images) + +;; ;; Stop centering the document +;; (visual-fill-column-mode 0) +;; (visual-line-mode 0)) + +;; ;; Turn on variable pitch fonts in Org Mode buffers +;; (add-hook 'org-mode-hook 'variable-pitch-mode) + +;; ;; Register hooks with org-present +;; (add-hook 'org-present-mode-hook 'my/org-present-start) +;; (add-hook 'org-present-mode-quit-hook 'my/org-present-end) +;; (add-hook 'org-present-after-navigate-functions 'my/org-present-prepare-slide) diff --git a/.config/doom/custom.el b/.config/doom/custom.el new file mode 100644 index 0000000..fcd550e --- /dev/null +++ b/.config/doom/custom.el @@ -0,0 +1,19 @@ +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(magit-todos-insert-after '(bottom) nil nil "Changed by setter of obsolete option `magit-todos-insert-at'") + '(package-selected-packages '(eshell-syntax-highlighting doom-themes))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(font-lock-comment-face ((t (:slant italic)))) + '(font-lock-keyword-face ((t (:slant italic)))) + '(org-level-1 ((t (:inherit outline-1 :foreground "mediumslateblue" :height 1.15)))) + '(org-level-2 ((t (:inherit outline-2 :foreground "coral" :height 1.0)))) + '(org-level-3 ((t (:inherit outline-3 :height 1.0)))) + '(org-level-4 ((t (:inherit outline-4 :height 1.0)))) + '(org-level-5 ((t (:inherit outline-5 :height 1.0))))) diff --git a/.config/doom/eshell/aliases b/.config/doom/eshell/aliases new file mode 100644 index 0000000..5220948 --- /dev/null +++ b/.config/doom/eshell/aliases @@ -0,0 +1,10 @@ +alias era eshell-read-aliases-list +alias ff find-file $1 +alias d dired $1 + +alias ls exa --color=always --group-directories-first --icons +alias la exa -a --color=always --group-directories-first --icons +alias ll exa -al --color=always --group-directories-first --icons + +alias grep grep --color=always $* +alias rg rg --color=always $* diff --git a/.config/doom/init.el b/.config/doom/init.el new file mode 100644 index 0000000..95c79a0 --- /dev/null +++ b/.config/doom/init.el @@ -0,0 +1,196 @@ +;;; init.el -*- lexical-binding: t; -*- + +;; This file controls what Doom modules are enabled and what order they load +;; in. Remember to run 'doom sync' after modifying it! + +;; NOTE Press 'SPC h d h' (or 'C-h d h' for non-vim users) to access Doom's +;; documentation. There you'll find a link to Doom's Module Index where all +;; of our modules are listed, including what flags they support. + +;; NOTE Move your cursor over a module's name (or its flags) and press 'K' (or +;; 'C-c c k' for non-vim users) to view its documentation. This works on +;; flags as well (those symbols that start with a plus). +;; +;; Alternatively, press 'gd' (or 'C-c c d') on a module to browse its +;; directory (for easy access to its source code). + +(doom! :input + ;;bidi ; (tfel ot) thgir etirw uoy gnipleh + ;;chinese + ;;japanese + ;;layout ; auie,ctsrnm is the superior home row + + :completion + company ; the ultimate code completion backend + ;;helm ; the *other* search engine for love and life + ;;ido ; the other *other* search engine... + ivy ; a search engine for love and life + ;;vertico ; the search engine of the future + + :ui + ;;deft ; notational velocity for Emacs + doom ; what makes DOOM look the way it does + doom-dashboard ; a nifty splash screen for Emacs + ;;doom-quit ; DOOM quit-message prompts when you quit Emacs + ;;(emoji +unicode) ; 🙂 + hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW + ;;hydra + ;;indent-guides ; highlighted indent columns + ;;ligatures ; ligatures and symbols to make your code pretty again + ;;minimap ; show a map of the code on the side + modeline ; snazzy, Atom-inspired modeline, plus API + ;;nav-flash ; blink cursor line after big motions + ;;neotree ; a project drawer, like NERDTree for vim + ophints ; highlight the region an operation acts on + (popup +defaults) ; tame sudden yet inevitable temporary windows + ;;tabs ; a tab bar for Emacs + ;;treemacs ; a project drawer, like neotree but cooler + ;;unicode ; extended unicode support for various languages + vc-gutter ; vcs diff in the fringe + vi-tilde-fringe ; fringe tildes to mark beyond EOB + ;;window-select ; visually switch windows + workspaces ; tab emulation, persistence & separate workspaces + ;;zen ; distraction-free coding or writing + + :editor + (evil +everywhere); come to the dark side, we have cookies + file-templates ; auto-snippets for empty files + fold ; (nigh) universal code folding + ;;(format +onsave) ; automated prettiness + ;;god ; run Emacs commands without modifier keys + ;;lispy ; vim for lisp, for people who don't like vim + ;;multiple-cursors ; editing in many places at once + ;;objed ; text object editing for the innocent + ;;parinfer ; turn lisp into python, sort of + ;;rotate-text ; cycle region at point between text candidates + snippets ; my elves. They type so I don't have to + ;;word-wrap ; soft wrapping with language-aware indent + + :emacs + (dired +icons) ; making dired pretty [functional] + electric ; smarter, keyword-based electric-indent + (ibuffer +icons) ; interactive buffer management + undo ; persistent, smarter undo for your inevitable mistakes + vc ; version-control and Emacs, sitting in a tree + + :term + eshell ; the elisp shell that works everywhere + ;;shell ; simple shell REPL for Emacs + ;;term ; basic terminal emulator for Emacs + ;;vterm ; the best terminal emulation in Emacs + + :checkers + syntax ; tasing you for every semicolon you forget + ;;(spell +flyspell) ; tasing you for misspelling mispelling + ;;grammar ; tasing grammar mistake every you make + + :tools + ;;ansible + ;;biblio ; Writes a PhD for you (citation needed) + ;;debugger ; FIXME stepping through code, to help you add bugs + ;;direnv + ;;docker + ;;editorconfig ; let someone else argue about tabs vs spaces + ;;ein ; tame Jupyter notebooks with emacs + (eval +overlay) ; run code, run (also, repls) + ;;gist ; interacting with github gists + lookup ; navigate your code and its documentation + ;;lsp ; M-x vscode + magit ; a git porcelain for Emacs + ;;make ; run make tasks from Emacs + ;;pass ; password manager for nerds + ;;pdf ; pdf enhancements + ;;prodigy ; FIXME managing external services & code builders + ;;rgb ; creating color strings + ;;terraform ; infrastructure as code + ;;tmux ; an API for interacting with tmux + ;;upload ; map local to remote projects via ssh/ftp + + :os + (:if IS-MAC macos) ; improve compatibility with macOS + ;;tty ; improve the terminal Emacs experience + + :lang + ;;agda ; types of types of types of types... + ;;beancount ; mind the GAAP + ;;(cc +lsp) ; C > C++ == 1 + ;;clojure ; java with a lisp + ;;common-lisp ; if you've seen one lisp, you've seen them all + ;;coq ; proofs-as-programs + ;;crystal ; ruby at the speed of c + ;;csharp ; unity, .NET, and mono shenanigans + ;;data ; config/data formats + ;;(dart +flutter) ; paint ui and not much else + ;;dhall + ;;elixir ; erlang done right + ;;elm ; care for a cup of TEA? + emacs-lisp ; drown in parentheses + ;;erlang ; an elegant language for a more civilized age + ;;ess ; emacs speaks statistics + ;;factor + ;;faust ; dsp, but you get to keep your soul + ;;fortran ; in FORTRAN, GOD is REAL (unless declared INTEGER) + ;;fsharp ; ML stands for Microsoft's Language + ;;fstar ; (dependent) types and (monadic) effects and Z3 + ;;gdscript ; the language you waited for + ;;(go +lsp) ; the hipster dialect + ;;(graphql +lsp) ; Give queries a REST + ;;(haskell +lsp) ; a language that's lazier than I am + ;;hy ; readability of scheme w/ speed of python + ;;idris ; a language you can depend on + json ; At least it ain't XML + ;;(java +lsp) ; the poster child for carpal tunnel syndrome + ;;javascript ; all(hope(abandon(ye(who(enter(here)))))) + ;;julia ; a better, faster MATLAB + ;;kotlin ; a better, slicker Java(Script) + latex ; writing papers in Emacs has never been so fun + ;;lean ; for folks with too much to prove + ;;ledger ; be audit you can be + lua ; one-based indices? one-based indices + markdown ; writing docs for people to ignore + ;;nim ; python + lisp at the speed of c + ;;nix ; I hereby declare "nix geht mehr!" + ;;ocaml ; an objective camel + (org ; organize your plain life in plain text + +journal + +pretty + +publish + +roam) + ;;php ; perl's insecure younger brother + ;;plantuml ; diagrams for confusing people more + ;;purescript ; javascript, but functional + ;;python ; beautiful is better than ugly + ;;qt ; the 'cutest' gui framework ever + ;;racket ; a DSL for DSLs + ;;raku ; the artist formerly known as perl6 + ;;rest ; Emacs as a REST client + ;;rst ; ReST in peace + ;;(ruby +rails) ; 1.step {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"} + ;;rust ; Fe2O3.unwrap().unwrap().unwrap().unwrap() + ;;scala ; java, but good + ;;(scheme +guile) ; a fully conniving family of lisps + sh ; she sells {ba,z,fi}sh shells on the C xor + ;;sml + ;;solidity ; do you need a blockchain? No. + ;;swift ; who asked for emoji variables? + ;;terra ; Earth and Moon in alignment for performance. + ;;web ; the tubes + yaml ; JSON, but readable + ;;zig ; C, but simpler + + :email + ;;(mu4e +org +gmail) + ;;notmuch + ;;(wanderlust +gmail) + + :app + ;;calendar + ;;emms + ;;everywhere ; *leave* Emacs!? You must be joking + ;;irc ; how neckbeards socialize + (rss +org) ; emacs as an RSS reader + ;;twitter ; twitter client https://twitter.com/vnought + + :config + ;;literate + (default +bindings +smartparens)) diff --git a/.config/doom/packages.el b/.config/doom/packages.el new file mode 100644 index 0000000..72fe9b1 --- /dev/null +++ b/.config/doom/packages.el @@ -0,0 +1,63 @@ +;; -*- no-byte-compile: t; -*- +;;; $DOOMDIR/packages.el + + +;; To install a package with Doom you must declare them here and run 'doom sync' +;; on the command line, then restart Emacs for the changes to take effect -- or +;; use 'M-x doom/reload'. + +;;(package! org :pin "ca873f7") +(package! all-the-icons) +(package! all-the-icons-dired) +(package! beacon) +(package! doom-modeline) +(package! elfeed) +(package! elfeed-goodies) +(package! elfeed-org) +(package! nerd-icons) +;;(package! modus-themes) +;;(package! org-super-agenda) +(package! org-superstar) + +;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror: +;(package! some-package) + +;; To install a package directly from a remote git repo, you must specify a +;; `:recipe'. You'll find documentation on what `:recipe' accepts here: +;; https://github.com/raxod502/straight.el#the-recipe-format +;(package! another-package +; :recipe (:host github :repo "username/repo")) + +;; If the package you are trying to install does not contain a PACKAGENAME.el +;; file, or is located in a subdirectory of the repo, you'll need to specify +;; `:files' in the `:recipe': +;(package! this-package +; :recipe (:host github :repo "username/repo" +; :files ("some-file.el" "src/lisp/*.el"))) + +;; If you'd like to disable a package included with Doom, you can do so here +;; with the `:disable' property: +;(package! builtin-package :disable t) + +;; You can override the recipe of a built in package without having to specify +;; all the properties for `:recipe'. These will inherit the rest of its recipe +;; from Doom or MELPA/ELPA/Emacsmirror: +;(package! builtin-package :recipe (:nonrecursive t)) +;(package! builtin-package-2 :recipe (:repo "myfork/package")) + +;; Specify a `:branch' to install a package from a particular branch or tag. +;; This is required for some packages whose default branch isn't 'master' (which +;; our package manager can't deal with; see raxod502/straight.el#279) +;(package! builtin-package :recipe (:branch "develop")) + +;; Use `:pin' to specify a particular commit to install. +;(package! builtin-package :pin "1a2b3c4d5e") + + +;; Doom's packages are pinned to a specific commit and updated from release to +;; release. The `unpin!' macro allows you to unpin single packages... +;(unpin! pinned-package) +;; ...or multiple packages +;(unpin! pinned-package another-pinned-package) +;; ...Or *all* packages (NOT RECOMMENDED; will likely break things) +;(unpin! t) diff --git a/.vimrc b/.vimrc new file mode 100644 index 0000000..5233b39 --- /dev/null +++ b/.vimrc @@ -0,0 +1,68 @@ +" __ __ _____ +" / \ / \ / __ \ +" / /\ \ / /\ \ | |__| | Manuel Prinz (MP) +" / / \ \/ / \ \ | ___/ +" / / \__/ \ \| | +" /_/ \_\_| +" +" Beschreibung: Startskript vim +" letzte Änderung: 14.08.2021 + +" When started as "evim", evim.vim will already have done these settings, bail out. + +" testing +syntax enable +filetype plugin on +set path+=** +set wildmenu + +if v:progname =~? "evim" + finish +endif + +" Get the defaults that most users want. +source $VIMRUNTIME/defaults.vim + +if has("vms") + set nobackup " do not keep a backup file, use versions instead +else + set backup " keep a backup file (restore to previous version) + if has('persistent_undo') + set undofile " keep an undo file (undo changes after closing) + endif +endif + +if &t_Co > 2 || has("gui_running") + " Switch on highlighting the last used search pattern. + set hlsearch +endif + +" Put these in an autocmd group, so that we can delete them easily. +augroup vimrcEx + au! + + " For all text files set 'textwidth' to 78 characters. + autocmd FileType text setlocal textwidth=78 +augroup END + +" Add optional packages. +" +" The matchit plugin makes the % command work better, but it is not backwards +" compatible. +" The ! means the package won't be loaded right away but when plugins are +" loaded during initialization. +if has('syntax') && has('eval') + packadd! matchit +endif + +set relativenumber +set laststatus=2 +set noshowmode +set expandtab +set tabstop=4 +set shiftwidth=4 +set cursorline +highlight CursorLine cterm=none ctermbg=235 +highlight CursorLineNr cterm=none ctermbg=235 + +let g:lightline = {'colorscheme': 'jellybeans'} diff --git a/README.org b/README.org index 4b85b96..338adcc 100644 --- a/README.org +++ b/README.org @@ -6,4 +6,5 @@ Hier die Sammlung meiner persönlichen =Dotfiles=. * Erklärungen * Changelog ++ 25.12.2025: alacritty, Doom Emacs und vim zugefügt + 25.12.2025: .bashrc und starship.toml zugefügt