Philosophischer Nacht- und Sonntagsdienst

Wir Peripatetiker:

Mail:
blog@Philosophischer-Nacht-
und-Sonntagsdienst.de
Genutzte Suchmaschine:
qwant.com
Technik:
Orgmode
Emacs Wiki
Manjaro Linux

Lokal:
Neues im Blog
Internet
Freizeit
Wissen
Reisen
Gedichte (pdf)
Sitemap
.emacs

Impressum/DSGVO

RSS-Abo

;;; voli@gmx.de's
;;;    ___ _ __ ___   __ _  ___ ___
;;;   / _ \ '_ ` _ \ / _` |/ __/ __|
;;;  |  __/ | | | | | (_| | (__\__ \
;;; (_)___|_| |_| |_|\__,_|\___|___/
;;; Time-stamp: <2023-02-12 12:33:00 voli>

;;; (version)"GNU Emacs 29.0.50 (build 9, x86_64-pc-linux-gnu, GTK+
;;; Version 3.24.34, cairo version 1.16.0) of 2022-08-27"

;;; (shell-command-to-string "uname -a")"Linux marescot
;;; 6.0.0-rc2-blom+ #304 SMP PREEMPT Sat Aug 27 22:41:34 CEST 2022
;;; x86_64 GNU/Linux"


(message "Hier beginnt gnu-emacs")

;;;   __            _              _
;;;  / _| ___  __ _| |_ _   _ _ __(_)_ __   __ _
;;; | |_ / _ \/ _` | __| | | | '__| | '_ \ / _` |
;;; |  _|  __/ (_| | |_| |_| | |  | | | | | (_| |
;;; |_|  \___|\__,_|\__|\__,_|_|  |_|_| |_|\__, |
;;;                                        |___

(setq user-emacs-source-directory (concat user-emacs-directory "elisp/"))
(add-to-list 'load-path (expand-file-name user-emacs-source-directory))
(let ((default-directory user-emacs-source-directory))
  (normal-top-level-add-subdirs-to-load-path))

(mapc 'require '(blom-cred blom-bbdb blom-erc blom-eshell
                           blom-gnus blom-org disable-mouse
                           org-alert persistent-scratch package
                           ))

;;; __     __
;;; \ \   / /_ _ _ __ ___   _ __ ___   __ _ _ __
;;;  \ \ / / _` | '__/ __| | '_ ` _ \ / _` | '_ \
;;;   \ V / (_| | |  \__ \ | | | | | | (_| | | | |
;;;    \_/ \__,_|_|  |___/ |_| |_| |_|\__,_|_| |_|

;;; manuell gesetzte Variable

(setq
 make-backup-files nil
 auto-save-default nil
 delete-old-versions t
 auto-insert-directory "~/.emacs.d/Vorlagen"
 blink-matching-paren 'jump
;;; browse-url-browser-function 'browse-url-generic
 create-lockfiles nil
 dired-auto-revert-buffer t
 display-time-day-and-date t
 display-time-24hr-format t
 display-time-use-mail-icon t
 enable-local-eval t
 font-lock-maximum-decoration t
 history-length 2500
 inferior-lisp-program "/usr/bin/sbcl"
 inhibit-startup-message t
 initial-scratch-message t
 scroll-error-top-bottom t
;;;  switch-to-buffer-preserve-window-point t
 system-name "Philosophischer-Nacht-und-Sonntagsdienst.de"
 visible-bell t
 )

(setq package-archives '(("ELPA"  . "http://tromey.com/elpa/")
                         ;;; ("org"   . "http://orgmode.org/elpa/")
                         ("gnu"   . "http://elpa.gnu.org/packages/")
                         ("melpa" . "https://melpa.org/packages/")))

;;;  _____         _
;;; |_   _|_ _ ___| |_ ___ _ __
;;;   | |/ _` / __| __/ _ \ '_ \
;;;   | | (_| \__ \ ||  __/ | | |
;;;   |_|\__,_|___/\__\___|_| |_|

;;; Tastaturbelegung
;;; Barrierefreiheit für mich
;;; Standard-Größe setzen, die alles andere überschreibt. Sie ist groß.

(setq schriftgroesse 200)
(set-face-attribute 'default nil :height schriftgroesse)
(setq scale-intervall 10)

(defun font-scale-up ()
  (interactive)
  (setq schriftgroesse (+ schriftgroesse scale-intervall))
  (set-face-attribute 'default nil :height schriftgroesse))

(defun font-scale-down ()
  (interactive)
  (setq schriftgroesse (- schriftgroesse scale-intervall))
  (set-face-attribute 'default nil :height schriftgroesse))

(global-set-key [(control +)] #'font-scale-up)
(global-set-key [(control -)] #'font-scale-down)

(global-set-key [(control c) (m)]         #'menu-bar-mode)
(global-set-key [(control q)]             #'delete-frame)
(global-set-key [(control shift left)]    #'bs-cycle-previous)
(global-set-key [(control shift right)]   #'bs-cycle-next)
(global-set-key [(control tab)]           #'hippie-expand)
;;; (global-set-key [(control s)]             #'swiper)
(global-set-key [(control x) (control c)] #'delete-frame)
(global-set-key [(control x) (control f)] #'ido-find-file)  ;;; ido-find-file
(global-set-key [(control x) (control r)] #'recentf-open-files)
(global-set-key [(meta tab)]              #'hippie-expand)
;;; (global-set-key [(super x)]               #'hippie-expand)
(global-set-key [(super tab)]             #'hippie-expand)
(global-set-key [f1]                      #'gnus)
(global-set-key [f2]                      #'delete-other-windows)
(global-set-key [f3]                      #'ibuffer) ;;; #'bs-show) ;;; #'ido-switch-buffer ) 
(global-set-key [f4]                      #'(lambda () (interactive) (eshell "new")))
(global-set-key [f5]                      #'(lambda()(interactive)(insert system-name)))
(global-set-key [f6]                      #'other-window)
;;;(global-set-key [f7]                      #'mingus)
(global-set-key [f8]                      #'org-capture)

;;;        _ _
;;;   __ _| (_) __ _ ___
;;;  / _` | | |/ _` / __|
;;; | (_| | | | (_| \__ \
;;;  \__,_|_|_|\__,_|___/
;;;
;;; Aliase

(defalias 'yes-or-no-p 'y-or-n-p)

;;;     _                      _
;;;    / \  _   _ ___ ___  ___| |__   ___ _ __
;;;   / _ \| | | / __/ __|/ _ \ '_ \ / _ \ '_ \
;;;  / ___ \ |_| \__ \__ \  __/ | | |  __/ | | |
;;; /_/   \_\__,_|___/___/\___|_| |_|\___|_| |_|
;;;
;;; (set-frame-height (selected-frame) 40)
;;; (load-theme 'spacegray t)

;;; Zufallsthema aus heruntergeladenen Elpa-Themen wählen:

(if window-system
    (let* ((ithemes '(afternoon
                      ample arc-dark chocolate spacegray
                      dark-krystal abyss atom-dark darkmine
                      ancient-one-dark doom-xcode
;;;    		      doom-manegarm doom-vibrant
;;;    		      doom-moonlight doom-opera
;;;    		      doom-monokai-machine doom-nova
;;;    		      doom-peacock doom-monokai-spectrum
;;;    		      doom-horizon doom-oceanic-next
;;;    		      doom-meltbus doom-acario-dark
;;;    		      doom-ayu-mirage doom-dracula
;;;    		      doom-tomorrow-night doom-monokai-pro
;;;    		      doom-material-dark doom-spacegrey
;;;    		      doom-miramare doom-ephemeral
;;;    		      doom-palenight doom-plain-dark
;;;    		      doom-tokyo-night doom-one
;;;    		      doom-shades-of-purple
;;;    		      doom-monokai-octagon doom-1337
;;;    		      doom-monokai-classic doom-molokai
;;;    		      doom-badger doom-dark+ doom-lantern
;;;    		      doom-ayu-dark doom-Iosvkem doom-snazzy
;;;    		      doom-ir-black doom-fairy-floss
;;;    		      doom-outrun-electric doom-henna
;;;    		      doom-rouge doom-nord-aurora
;;;    		      doom-laserwave
;;;    		      doom-solarized-dark-high-contrast
;;;    		      doom-material doom-sourcerer
;;;    		      doom-challenger-deep doom-solarized-dark
;;;    		      doom-nord doom-old-hope doom-wilmersdorf
;;;    		      doom-gruvbox doom-homage-black
;;;    		      doom-zenburn doom-monokai-ristretto
                      chocolate afternoon arjen-grey dark-mint spacegray
                      arc-dark ample ample-flat apropospriate-dark
                      darktooth darkburn alect-black-alt alect-dark-alt
                      alect-dark alect-black forest-blue
                      solarized-selenized-dark solarized-gruvbox-dark solarized-dark
                      solarized-dark-high-contrast
                      solarized-wombat-dark solarized-selenized-black
                      solarized-zenburn soothe grandshell chocolate afternoon
                      birds-of-paradise-plus arjen-grey hamburg naga noctilux
                      dark-mint spacegray northcode gotham arc-dark ample ample-flat
                      gruber-darker apropospriate-dark darcula
                      fantom darktooth exotica darkburn atom-one-dark dakrone mood-one
                      humanoid-dark distinguished alect-black-alt alect-dark-alt
                      alect-dark alect-black flatui-dark))
           (zufallsfarbschema (nth (random (length ithemes))
                                   ithemes)))
      (load-theme zufallsfarbschema t)
      (add-to-list 'mode-line-misc-info (list (concat "[Theme: " (symbol-name zufallsfarbschema) "] ")))
      (message (concat "Zufalls-Theme ist: " (symbol-name zufallsfarbschema)))))

(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.
 '(initial-frame-alist '((fullscreen . maximized)))
 '(package-selected-packages
   '(empv file-info ibrowse org-habit-stats desktop-environment mastodon all-the-icons all-the-icons-completion all-the-icons-dired all-the-icons-gnus dashboard dashboard-hackernews use-package package eshell-did-you-mean esh-help esh-autosuggest eshell-fringe-status soothe-theme dirvish websearch atom-one-dark-theme birds-of-paradise-plus-theme distinguished-theme exotica-theme fantom-theme flatui-dark-theme forest-blue-theme gotham-theme grandshell-theme gruber-darker-theme hamburg-theme humanoid-themes iceberg-theme klere-theme kooten-theme liso-theme lush-theme madhat2r-theme mood-one-theme naga-theme nimbus-theme noctilux-theme northcode-theme with-editor w3m spacegray-theme shimbun persistent-scratch org-modern org-alert doom-themes doom-modeline disable-mouse darktooth-theme darkokai-theme darkmine-theme darkburn-theme dark-souls dark-mint-theme dark-krystal-theme darcula-theme dakrone-theme crontab-mode chocolate-theme calmer-forest-theme bbdb atom-dark-theme arjen-grey-theme arc-dark-theme apropospriate-theme ancient-one-dark-theme ample-theme alect-themes afternoon-theme abyss-theme)))

;;;  __  __       _
;;; |  \/  |_   _| | ___
;;; | |\/| | | | | |/ _ \
;;; | |  | | |_| | |  __/
;;; |_|  |_|\__,_|_|\___|
;;; Unicode: 🎂🎂🎂 : geht mit installierten unicode + unifont-Fonts.

(prefer-coding-system 'utf-8)
(set-language-environment "utf-8")
(setq default-input-method "german")
(set-default-coding-systems 'utf-8)

;; Treat clipboard input as UTF-8 string first; compound text next, etc.
;; (setq x-select-request-type '(UTF8_STRING COMPOUND_TEXT TEXT STRING))

(setq
 x-select-enable-clipboard t
 x-select-enable-primary t)

;;;  __  __           _ _
;;; |  \/  | ___   __| (_)
;;; | |\/| |/ _ \ / _` | |
;;; | |  | | (_) | (_| | |
;;; |_|  |_|\___/ \__,_|_|

;;; Modi

(auto-compression-mode 1)
(auto-encryption-mode 1)
(auto-fill-mode nil)
(auto-image-file-mode)
(auto-insert-mode t)
(blink-cursor-mode 1)
(display-time-mode 1)
(electric-pair-mode 1)
(global-disable-mouse-mode 1)
(global-font-lock-mode 1)
(icomplete-mode 1)
(ido-mode 0)
(iimage-mode 1)
(menu-bar-mode 0)
(persistent-scratch-setup-default)
(recentf-mode 1)
(savehist-mode 1)
(semantic-mode 1)
(set-default 'indicate-empty-lines t)
(show-paren-mode 1)
(tool-bar-mode 0)
(tooltip-mode 1)
(transient-mark-mode 1)
(visual-line-mode 1)
;;;(electric-layout-mode 1)
;;;(file-name-shadow-mode 1)

(org-alert-enable)

(setq auto-insert-alist
      (nconc '(("\\.el$"    . "elisp-insert.el") ;Reihenfolge wichtig!
               ("\\.sh$"    . "sh-template")
               ("brief"     . "brief.org")
               ("\\.tex$"   . "aufsatz.tex"))
             auto-insert-alist))

;;;  _   _             _
;;; | | | | ___   ___ | | _____
;;; | |_| |/ _ \ / _ \| |/ / __|
;;; |  _  | (_) | (_) |   <\__ \
;;; |_| |_|\___/ \___/|_|\_\___/
;;;
;;; Hooks

(add-hook 'before-save-hook 'time-stamp)
(add-hook 'after-save-hook  'executable-make-buffer-file-executable-if-script-p)

(add-hook 'shell-mode-hook  'ansi-color-for-comint-mode-on)

(add-hook 'prog-mode-hook (lambda ()
                            (setq show-trailing-whitespace t)
                            (show-paren-mode 1)
;;;			    (turn-on-eldoc-mode)
                            ))


;;; (add-to-list 'auto-mode-alist '("\\.fish\\'" . shell-script-mode))
;;; (add-hook 'fish-mode-hook (lambda ()
;;;			    (add-hook 'before-save-hook 'fish_indent-before-save)))


;;;  ____         __  __                __  __             _
;;; | __ ) _   _ / _|/ _| ___ _ __     |  \/  | __ _  __ _(_) ___
;;; |  _ \| | | | |_| |_ / _ \ '__|____| |\/| |/ _` |/ _` | |/ _ \
;;; | |_) | |_| |  _|  _|  __/ | |_____| |  | | (_| | (_| | |  __/
;;; |____/ \__,_|_| |_|  \___|_|       |_|  |_|\__,_|\__, |_|\___|
;;;                                                  |___/
;;; Dateien, die immer präsent sein sollen.

(mapc 'find-file-noselect '("~/.emacs.d/elisp/gnu-emacs"
                            "~/.emacs.d/elisp/blom-gnus.el"
                            "~/.emacs.d/elisp/blom-eshell.el"
                            "~/.emacs.d/elisp/blom-org.el"
                            "~/.emacs.d/elisp/blom-erc.el"
                            "~/.emacs.d/elisp/blom-bbdb.el"
                            "~/.crontab"
                            "~/.config/i3/config"
                            "~/.config/i3blocks/config"
                            "~/.config/i3status/config"
;;;			    "~/.config/fish/config.fish"
;;;			    "~/.zshrc.local"
                            ))

;;;  _____         _   _
;;; |_   _|__  ___| |_(_)_ __   __ _
;;;   | |/ _ \/ __| __| | '_ \ / _` |
;;;   | |  __/\__ \ |_| | | | | (_| |
;;;   |_|\___||___/\__|_|_| |_|\__, |
;;;                            |___/

(if window-system
    (setq browse-url-browser-function (quote browse-url-generic)
          browse-url-generic-program "~/bin/vol-web")
;;;  (setq browse-url-browser-function (quote eww-browse-url)))
(setq browse-url-browser-function (quote eww-browse-url)))

;;; __     __                              _
;;; \ \   / /_ _ _ __ ___    ___ _   _ ___| |_
;;;  \ \ / / _` | '__/ __|  / __| | | / __| __|
;;;   \ V / (_| | |  \__ \ | (__| |_| \__ \ |_
;;;    \_/ \__,_|_|  |___/  \___|\__,_|___/\__|
;;;
;;; Variable via M-x customize

(setq initial-major-mode 'org-mode)

;;;
;;;   ___ _ __ ___   __ _  ___ ___       ___  ___ _ ____   _____ _ __
;;;  / _ \ '_ ` _ \ / _` |/ __/ __|_____/ __|/ _ \ '__\ \ / / _ \ '__|
;;; |  __/ | | | | | (_| | (__\__ \_____\__ \  __/ |   \ V /  __/ |
;;;  \___|_| |_| |_|\__,_|\___|___/     |___/\___|_|    \_/ \___|_|
;;;
;;; emacs-server, schön einfach und so praktisch, emacs-Aufruf jetzt
;;; *immer* mit Batch:
;;; ,---- textedit ----
;;; | #!/bin/sh
;;; | exec emacsclient -c --alternate-editor="emacs" "$@"
;;; `----

;;; startet jetzt als emacs --daemon
(server-start)

;;;(use-package server
;;;  :ensure nil
;;;  :hook (after-init . server-mode))

(org-agenda-list)

(use-package dashboard
  :after all-the-icons
  :config
  (dashboard-setup-startup-hook)
  :custom
  (dashboard-items '((recents  . 5)
                     (projects . 5)
                     (agenda   . 5)))
  (dashboard-set-footer nil)
  (dashboard-set-init-info t)
  (dashboard-center-content t)
  (dashboard-set-file-icons t)
  (dashboard-set-heading-icons t)
  (dashboard-startup-banner 'logo))

(message "Hier endet gnu-emacs")

(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.
 )

Created: 2023-02-17 Fr 15:27

Validate