From 422dc8ec56497e7204883184c5f8840e868013b4 Mon Sep 17 00:00:00 2001 From: Andrew Jose Date: Wed, 22 Nov 2023 08:14:15 +0530 Subject: [PATCH] better names for customizations --- README.org | 6 +++--- flexoki-themes.el | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.org b/README.org index a235514..999875c 100644 --- a/README.org +++ b/README.org @@ -12,9 +12,9 @@ Installing using use-package: :config (load-theme 'flexoki-themes-light t) :custom - (flexoki-themes-set-bold-keywords t) - (flexoki-themes-set-bold-builtins t) - (flexoki-themes-set-italic-comments t)) + (flexoki-themes-use-bold-keywords t) + (flexoki-themes-use-bold-builtins t) + (flexoki-themes-use-italic-comments t)) #+end_src ** Contributing diff --git a/flexoki-themes.el b/flexoki-themes.el index 40fffc9..8a246ed 100644 --- a/flexoki-themes.el +++ b/flexoki-themes.el @@ -41,17 +41,17 @@ :group 'flexoki-themes :type 'symbol) -(defcustom flexoki-themes-set-italic-comments t +(defcustom flexoki-themes-use-italic-comments t "If t then use italics for comments." :group 'flexoki-themes :type 'boolean) -(defcustom flexoki-themes-set-bold-keywords nil +(defcustom flexoki-themes-use-bold-keywords nil "If t then use bold weight for keywords." :group 'flexoki-themes :type 'boolean) -(defcustom flexoki-themes-set-bold-builtins nil +(defcustom flexoki-themes-use-bold-builtins nil "If t then use bold weight for font lock builtins." :group 'flexoki-themes :type 'boolean)