Anpassung: init-Files auf debian angepasst

This commit is contained in:
knedlik
2026-04-08 09:32:50 +02:00
parent 312add83fa
commit 0e49835736
8 changed files with 10 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
;; ~/.emacs.d/init.el ;; ~/.emacs.d/init.el -*- lexical-binding: t; -*-
(add-to-list 'load-path "~/.emacs.d/lisp") (add-to-list 'load-path "~/.emacs.d/lisp")

View File

@@ -1,4 +1,4 @@
;; (provide 'init-capture) ;; (provide 'init-capture) -*- lexical-binding: t; -*-
;; (defvar my/org-capture-title nil) ;; (defvar my/org-capture-title nil)

View File

@@ -1,3 +1,4 @@
;; -*- lexical-binding: t; -*-
;;; init-keybindings.el --- Keybindings -*- lexical-binding: t; -*- ;;; init-keybindings.el --- Keybindings -*- lexical-binding: t; -*-

View File

@@ -1,3 +1,4 @@
;; -*- lexical-binding: t; -*-
(require 'markdown-mode) (require 'markdown-mode)
(add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode)) (add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode))

View File

@@ -1,6 +1,9 @@
;; -*- lexical-binding: t; -*-
(require 'org-roam) (require 'org-roam)
(setq org-roam-directory (file-truename "~/org")) (setq org-roam-directory (file-truename "~/org"))
(setq org-roam-db-location
(expand-file-name "org-roam.db" user-emacs-directory))
(org-roam-db-autosync-mode) (org-roam-db-autosync-mode)

View File

@@ -1,3 +1,4 @@
;; -*- lexical-binding: t; -*-
(setq org-adapt-indentation t) (setq org-adapt-indentation t)
(setq org-startup-indented t) (setq org-startup-indented t)

View File

@@ -1,3 +1,4 @@
;; -*- lexical-binding: t; -*-
(require 'package) (require 'package)
(setq package-archives (setq package-archives

View File

@@ -1,3 +1,4 @@
;; -*- lexical-binding: t; -*-
(require 'subr-x) (require 'subr-x)
(require 'doom-themes) (require 'doom-themes)