Created
September 21, 2016 10:03
-
-
Save nlamirault/02af8bd9ed18ba5deffa60579abfb79b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A mettre dans .config/scame/scame-user.el : | |
(require 'powerline) | |
(require 'all-the-icons) | |
(require 'doom-themes) | |
(load-theme 'doom-one t) ;; or doom-dark, etc. | |
;; brighter source buffers | |
(add-hook 'find-file-hook 'doom-buffer-mode) | |
;; brighter minibuffer when active | |
(add-hook 'minibuffer-setup-hook 'doom-buffer-mode) | |
;; Custom neotree theme | |
(require 'doom-neotree) | |
(setq doom-neotree-enable-file-icons t) | |
a mettre dans ~/.emacs.d/custom.el : | |
(custom-set-variables | |
;; custom-set-variables 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. | |
'(column-number-mode t) | |
'(scame-completion-method (quote ivy)) | |
'(tool-bar-mode nil) | |
) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment