Configure org mode keybind override, pdftools theming

This commit is contained in:
Curt Spark 2024-12-13 20:29:40 +00:00
parent 9e0c09029d
commit ab0acd75e3
2 changed files with 7 additions and 4 deletions

View File

@ -347,8 +347,11 @@ Set keys:
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(global-set-key (kbd "<M-RET>") 'eshell) (global-set-key (kbd "<M-RET>") 'eshell)
(add-hook 'org-mode-hook (add-hook 'org-mode-hook
(lambda () (lambda ()
(local-unset-key (kbd "<M-RET>")))) (local-unset-key (kbd "<M-RET>"))
(local-unset-key (kbd "M-h"))
)
)
#+END_SRC #+END_SRC
*** Auto Popup frame Mode *** Auto Popup frame Mode
A mode that is similiar in functionality to pop-up-frame, however much more granular in control and toggleable as it is mode. Will stop duplicate windows from creating new frames etc. A mode that is similiar in functionality to pop-up-frame, however much more granular in control and toggleable as it is mode. Will stop duplicate windows from creating new frames etc.
@ -478,7 +481,8 @@ Install the package, enable it and ensure that it always is installed:
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package pdf-tools (use-package pdf-tools
:ensure t :ensure t
:hook (pdf-tools-enabled . pdf-view-midnight-minor-mode) ;;:hook (pdf-tools-enabled . pdf-view-midnight-minor-mode)
::hook (pdf-tools-enabled . pdf-view-themed-minor-mode)
;;:hook (pdf-tools-enabled . hide-mode-line-mode) ;;:hook (pdf-tools-enabled . hide-mode-line-mode)
:init :init
(pdf-loader-install) (pdf-loader-install)

View File

@ -73,7 +73,6 @@
'(objed-cursor-color "#874804") '(objed-cursor-color "#874804")
'(package-selected-packages '(package-selected-packages
'(ivy-pass lsp-sourcekit ranger omnisharp csharp-mode bug-hunter ewal-doom-themes ewal-evil-cursors ewal-spacemacs-themes ewal org-bullets company flyspell-correct-ivy evil ivy which-key use-package)) '(ivy-pass lsp-sourcekit ranger omnisharp csharp-mode bug-hunter ewal-doom-themes ewal-evil-cursors ewal-spacemacs-themes ewal org-bullets company flyspell-correct-ivy evil ivy which-key use-package))
'(pdf-view-midnight-colors '("#655370" . "#fbf8ef"))
'(rustic-ansi-faces '(rustic-ansi-faces
["#040201" "#874804" "#813c07" "#a45101" "#A76A19" "#D76C03" "#F09010" "#e8c99f"]) ["#040201" "#874804" "#813c07" "#a45101" "#A76A19" "#D76C03" "#F09010" "#e8c99f"])
'(vc-annotate-background "#040201") '(vc-annotate-background "#040201")