Files
emacs/settings/my-settings.el
Daniel Weschke d8336fbbae add views to tab bar and into menu and dashboard and move view functions to own file
add commentary function for org-mode with list function to create strings
2021-01-27 01:57:52 +01:00

13 lines
382 B
EmacsLisp

;;; my-settings.el --- Summary -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:
(use-package my
:load-path (lambda() (concat user-emacs-directory "lisp/my"))
:config
(with-eval-after-load 'org
(add-hook 'org-mode-hook 'my-org-link-color-hook)
(add-hook 'org-ctrl-c-ctrl-c-hook 'my-org-table-cell-color-attr)))
(provide 'my-settings)
;;; my-settings.el ends here