Skip to content

Instantly share code, notes, and snippets.

@kirang89
Created May 4, 2018 12:54
Show Gist options
  • Save kirang89/0337430f13432793d0bc09ddf159804b to your computer and use it in GitHub Desktop.
Save kirang89/0337430f13432793d0bc09ddf159804b to your computer and use it in GitHub Desktop.
Nothing to see here
(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