Skip to content

Commit

Permalink
Revise some smaller layers
Browse files Browse the repository at this point in the history
  • Loading branch information
smile13241324 committed Sep 21, 2021
1 parent 845cdca commit f5bd49c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions layers/+fun/emoji/packages.el
Expand Up @@ -21,12 +21,11 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.


(setq emoji-packages
'(
emoji-cheat-sheet-plus
emojify
(company-emoji :requires company)
))
(defconst emoji-packages
'(
emoji-cheat-sheet-plus
emojify
(company-emoji :requires company)))

(defun emoji/init-emoji-cheat-sheet-plus ()
(use-package emoji-cheat-sheet-plus
Expand Down Expand Up @@ -59,7 +58,8 @@
;; Hook for when a frame is created with emacsclient
(spacemacs|do-after-display-system-init
(spacemacs//set-emoji-font-for-current-frame))
(spacemacs|add-company-backends :backends company-emoji
:modes text-mode))
(spacemacs|add-company-backends
:backends company-emoji
:modes text-mode))
:config
(advice-add 'emoji-cheat-sheet-plus--insert-selection :after #'spacemacs/emoji-insert-and-possibly-complete)))
1 change: 1 addition & 0 deletions layers/+lang/perl5/packages.el
Expand Up @@ -23,6 +23,7 @@

(defconst perl5-packages
'(
company
(company-plsense :requires company)
(cperl-mode :location built-in)
flycheck
Expand Down
11 changes: 5 additions & 6 deletions layers/+lang/semantic-web/packages.el
Expand Up @@ -21,12 +21,11 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.


(setq semantic-web-packages
'(
ttl-mode
sparql-mode
org
))
(defconst semantic-web-packages
'(
ttl-mode
sparql-mode
org))

(defun semantic-web/init-ttl-mode ()
(use-package ttl-mode
Expand Down

0 comments on commit f5bd49c

Please sign in to comment.