Skip to content

Commit

Permalink
better names for customizations
Browse files Browse the repository at this point in the history
  • Loading branch information
crmsnbleyd committed Nov 22, 2023
1 parent 8d0315a commit 422dc8e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions flexoki-themes.el
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 422dc8e

Please sign in to comment.