add gui settings

This commit is contained in:
2020-12-05 14:19:31 +01:00
parent 524260681c
commit e7a29d6f32
4 changed files with 327 additions and 0 deletions

12
settings/my-settings.el Normal file
View File

@@ -0,0 +1,12 @@
;;; my-settings.el --- Summary -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:
(use-package 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