2026-01-29T19:56:52

This commit is contained in:
2026-01-29 19:56:43 +01:00
parent b6a7230e7e
commit c9505d7bf8
3 changed files with 24 additions and 0 deletions

View File

@@ -430,6 +430,7 @@ Uses `current-date-time-format' for the formatting the date/time."
;; (setenv "MSYSTEM" "UCRT64") ;; Tell MSYS2 which subsystem ;; (setenv "MSYSTEM" "UCRT64") ;; Tell MSYS2 which subsystem
;; (setenv "CHERE_INVOKING" "1") ;; Avoid directory change ;; (setenv "CHERE_INVOKING" "1") ;; Avoid directory change
@@ -738,4 +739,19 @@ Verhalten:
(setq doom-snippets-dir (expand-file-name "doom-snippets/" doom-user-dir)) (setq doom-snippets-dir (expand-file-name "doom-snippets/" doom-user-dir))
(setq +snippets-dir (expand-file-name "private-snippets/" doom-user-dir))
(use-package org-noter)
;; just like in pdf-view
(map! :map evil-normal-state-map "SPC j m" #'jump-to-register)
(map! :map evil-normal-state-map "SPC j M" #'point-to-register)
;;(define-key map (kbd "'") 'pdf-view-jump-to-register)
(map! :map pdf-view-mode-map "M" #'pdf-view-jump-to-register)
(map! :map evil-normal-state-map "SPC j n" #'evil-jump-forward)
(map! :map evil-normal-state-map "SPC j N" #'evil-jump-backward)

View File

@@ -88,3 +88,4 @@
(package! ws-butler) (package! ws-butler)
(package! flycheck-languagetool) (package! flycheck-languagetool)
(package! org-noter)

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: package!
# uuid:
# key: p
# condition: t
# --
(package! $0)