Created
May 4, 2018 12:54
-
-
Save kirang89/0337430f13432793d0bc09ddf159804b to your computer and use it in GitHub Desktop.
Nothing to see here
This file contains 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
(use-package move-text | |
:bind (([(meta up)] . move-text-up) | |
([(meta down)] . move-text-down))) | |
(use-package spaceline | |
:ensure t | |
:init | |
(require 'spaceline-config) | |
(let ((faces '(mode-line | |
mode-line-buffer-id | |
mode-line-emphasis | |
mode-line-highlight | |
mode-line-inactive))) | |
(mapc | |
(lambda (face) (set-face-attribute face nil :font "Source Code Pro for Powerline-13")) | |
faces)) | |
;; solves the issue with incorrect seperator colors in modeline | |
;; powerline now takes sRGB colorspace for rendering | |
(setq powerline-image-apple-rgb t) | |
:config | |
(spaceline-spacemacs-theme) | |
(setq spaceline-workspace-numbers-unicode nil) | |
(setq spaceline-window-numbers-unicode nil) | |
(setq spaceline-org-clock-p nil) | |
(setq spaceline-highlight-face-func 'spaceline-highlight-face-modified)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment