Move custom face settings to modules

This commit is contained in:
2016-05-04 13:26:46 +01:00
parent 88fdf32074
commit 8e5787358e
3 changed files with 6 additions and 7 deletions

View File

@@ -9,10 +9,3 @@
(quote
(smart-shift move-dup ruby-refactor yasnippet yari yaml-mode workgroups2 web-mode undo-tree twilight-bright-theme twilight-anti-bright-theme thrift string-inflection smex smartparens smart-mode-line scss-mode sass-mode ruby-tools rubocop rainbow-mode rainbow-delimiters project-explorer phi-search persp-projectile neotree multiple-cursors markdown-mode magit lua-mode linum-relative json-mode js2-mode inf-ruby indent-guide ido-vertical-mode ido-ubiquitous highlight-symbol highlight-indentation helm-swoop helm-projectile helm-open-github grizzl gotest go-projectile gitignore-mode github-browse-file gitconfig-mode git-timemachine gist full-ack flycheck fill-column-indicator feature-mode expand-region exec-path-from-shell ecb easy-kill discover-my-major dired+ diminish diff-hl company-go coffee-mode buffer-move browse-kill-ring ace-window)))
'(siren-rubocop-autocorrect-on-save nil))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(persp-selected-face ((t (:foreground "#d97a35" :weight bold))))
'(sp-pair-overlay-face ((t (:inherit nil)))))

View File

@@ -48,5 +48,8 @@
(define-key persp-mode-map (kbd "C-z p") 'persp-prev)
(define-key persp-mode-map (kbd "C-z C-p") 'persp-prev)
(custom-set-faces
'(persp-selected-face ((t (:foreground "#d97a35" :weight bold)))))
(provide 'siren-perspective)
;;; siren-perspective.el ends here

View File

@@ -26,5 +26,8 @@
;; Aliases
(defalias 'rw 'sp-rewrap-sexp)
(custom-set-faces
'(sp-pair-overlay-face ((t (:inherit nil)))))
(provide 'siren-smartparens)
;;; siren-smartparens.el ends here