doomemacs/core/core-ui.el

449 lines
17 KiB
EmacsLisp
Raw Normal View History

2016-05-08 09:57:43 +08:00
;;; core-ui.el --- interface & mode-line config
2015-06-15 15:05:52 +08:00
2016-05-25 10:15:44 +08:00
(defconst doom-fringe-size '3 "Default fringe width")
2016-05-24 05:13:59 +08:00
2016-05-20 21:23:46 +08:00
;; y/n instead of yes/no
(fset 'yes-or-no-p 'y-or-n-p)
2015-06-05 06:23:21 +08:00
(setq-default
line-spacing 1
2016-05-24 05:13:59 +08:00
indicate-buffer-boundaries nil ; don't show where buffer starts/ends
2016-05-25 10:15:44 +08:00
indicate-empty-lines nil ; don't show empty lines
2016-05-24 05:13:59 +08:00
fringes-outside-margins t ; switches order of fringe and margin
2016-05-08 09:57:43 +08:00
;; Keep cursors and highlights in current window only
cursor-in-non-selected-windows nil
2016-04-09 04:15:37 +08:00
highlight-nonselected-windows nil
2016-05-24 05:13:59 +08:00
;; Disable bidirectional text support for slight performance bonus
bidi-display-reordering nil
;; Remove continuation arrow on right fringe
fringe-indicator-alist (delq (assq 'continuation fringe-indicator-alist)
fringe-indicator-alist)
2016-04-09 04:15:37 +08:00
2016-05-24 05:13:59 +08:00
blink-matching-paren nil ; don't blink--too distracting
show-paren-delay 0.075
uniquify-buffer-name-style nil
2016-04-09 04:15:37 +08:00
visible-bell nil
visible-cursor nil
x-stretch-cursor t
use-dialog-box nil ; always avoid GUI
redisplay-dont-pause t ; don't pause display on input
split-width-threshold nil ; favor horizontal splits
show-help-function nil ; hide :help-echo text
2016-04-26 14:00:19 +08:00
jit-lock-defer-time nil
2016-04-09 04:15:37 +08:00
jit-lock-stealth-nice 0.1
jit-lock-stealth-time 0.2
jit-lock-stealth-verbose nil
NARF v0.7.0 vcs: + +git-gutter to conf-modes; -git-gutter from evil-insert-state-exit + switch github-browse-file for browse-at-remote + fix <leader>ob; add <leader>d[./sr] vc bindings + vc-annotate bindings and initial state Workgroups2 integration: + don't mess with buffers (speeds up emacs a lot!) + unicode numbers in display + single display function + remember workgroup uid instead (and smarter :tabrename) + clean up after wg update Org-mode + give highlight precedence to links in org-mode + enable encryption + config clean up + use different font for org + exclude attachments in recentf + redo latex and inline-image config + add narf/org-open-notes + update file templates for org CRM Mode-line + polish mode-line + decouple from spaceline-segments.el + refactor narf|spaceline-env-update + add macro-recording and buffer-size indicators to mode-line + python: '2>&1' in env-command + flycheck fringe indicator: change to arrow Aesthetics + update narf-dark-theme + add narf-minibuffer-active face + change writing indicator in writing-mode Misc + fix whitespace in display-startup-echo-area-message + reset fonts for more unicode characters + custom imenu entries + helm-imenu fontification + enable yascroll-bar in REPLs + reorganize my-commands.el + force quit iedit on ESC in normal mode + update snippets submodule + remove ido init (helm handles it all) [EXPERIMENTAL] + back to Terminus(TTF) font + popwin: update config for git-gutter and vc-diff windows + highlight :g[lobal] and :al[ign] matches + decouple narf/get-buffers+narf/get-all-buffers from wg-mess-with-buffer-list + fix narf/helm-buffers-dwim (add interactive form)
2015-12-12 05:51:04 +08:00
;; Minibuffer resizing
2016-05-01 13:05:25 +08:00
resize-mini-windows 'grow-only
max-mini-window-height 0.3
2016-05-24 05:13:59 +08:00
;; Ask for confirmation on exit only if there are real buffers left
confirm-kill-emacs
(lambda (_) (if window-system (if (doom/get-real-buffers) (y-or-n-p " Quit?") t) t)))
2016-05-24 05:13:59 +08:00
;; Initialize UI
2016-05-21 10:37:30 +08:00
(load-theme doom-current-theme t)
2016-05-20 21:23:46 +08:00
(tooltip-mode -1) ; show tooltips in echo area
(if (not window-system)
2016-03-04 04:04:14 +08:00
(menu-bar-mode -1)
2016-03-26 13:19:31 +08:00
(scroll-bar-mode -1) ; no scrollbar
(tool-bar-mode -1) ; no toolbar
2016-03-30 11:48:06 +08:00
;; full filename in frame title
(setq frame-title-format '(buffer-file-name "%f" ("%b")))
;; set fonts
2016-05-21 10:37:30 +08:00
(set-frame-font doom-default-font t)
(set-face-attribute 'default t :font doom-current-font)
2016-05-21 12:13:50 +08:00
;; standardize fringe width
2016-05-25 10:15:44 +08:00
(fringe-mode doom-fringe-size)
2016-05-21 12:13:50 +08:00
(push `(left-fringe . ,doom-fringe-size) default-frame-alist)
(push `(right-fringe . ,doom-fringe-size) default-frame-alist)
;; Default frame size on startup
(push '(width . 120) default-frame-alist)
(push '(height . 32) default-frame-alist)
2016-05-21 05:19:59 +08:00
;; no fringe in the minibuffer
2016-05-24 05:13:59 +08:00
(add-hook! (emacs-startup minibuffer-setup)
(set-window-fringes (minibuffer-window) 0 0 nil))
2016-03-30 11:48:06 +08:00
;; Show tilde in margin on empty lines
2016-03-04 04:04:14 +08:00
(define-fringe-bitmap 'tilde [64 168 16] nil nil 'center)
2016-05-21 05:19:59 +08:00
(set-fringe-bitmap-face 'tilde 'fringe)
2016-05-24 08:56:19 +08:00
(setcdr (assq 'empty-line fringe-indicator-alist) 'tilde)
;; Fix certain unicode characters without upsetting line-height
(doom-fix-unicode "DejaVu Sans" '(?⚠ ?★ ?➊ ?➋ ?➌ ?➍ ?➎ ?❻ ?➐ ?➑ ?➒ ?➓)))
2015-11-14 15:35:15 +08:00
2016-05-24 08:56:19 +08:00
;; Hide mode-line in help/compile window
(add-hook 'help-mode-hook 'doom|hide-mode-line)
(add-hook 'compilation-mode-hook 'doom|hide-mode-line)
2016-03-04 04:04:14 +08:00
2016-05-24 05:13:59 +08:00
;; On by default in Emacs 25. I'll enable it manually, so disable it globally
(when (and (> emacs-major-version 24) (featurep 'eldoc))
2016-01-31 10:16:10 +08:00
(global-eldoc-mode -1))
2015-11-11 07:01:57 +08:00
2016-05-26 17:23:25 +08:00
(use-package eldoc-eval
:config
(setq eldoc-in-minibuffer-show-fn 'doom/eldoc-show-in-mode-line)
(eldoc-in-minibuffer-mode +1))
2016-03-04 04:04:14 +08:00
;; Highlight TODO/FIXME/NOTE tags
(add-hook! (prog-mode emacs-lisp-mode css-mode)
2016-04-26 14:00:19 +08:00
(font-lock-add-keywords
2016-05-24 05:14:37 +08:00
nil '(("\\<\\(TODO\\(?:(.*)\\)?:?\\)\\>" 1 'warning prepend)
("\\<\\(FIXME\\(?:(.*)\\)?:?\\)\\>" 1 'error prepend)
("\\<\\(NOTE\\(?:(.*)\\)?:?\\)\\>" 1 'success prepend))))
2015-06-05 06:23:21 +08:00
2016-03-04 04:04:14 +08:00
;;
;; Plugins
;;
2016-05-01 13:05:25 +08:00
(use-package hl-line
2016-05-24 05:13:59 +08:00
:init (add-hook! (prog-mode markdown-mode) 'hl-line-mode)
2016-05-01 13:05:25 +08:00
:config
2016-05-21 10:37:30 +08:00
(defvar-local doom--hl-line-mode nil)
2016-05-08 09:57:43 +08:00
(setq hl-line-sticky-flag nil
global-hl-line-sticky-flag nil)
2016-05-01 13:05:25 +08:00
2016-05-21 10:37:30 +08:00
(defun doom|hl-line-on () (if doom--hl-line-mode (hl-line-mode +1)))
(defun doom|hl-line-off () (if doom--hl-line-mode (hl-line-mode -1)))
(add-hook! hl-line-mode (if hl-line-mode (setq doom--hl-line-mode t)))
2016-05-01 13:05:25 +08:00
;; Disable line highlight in visual mode
2016-05-21 10:37:30 +08:00
(add-hook 'evil-visual-state-entry-hook 'doom|hl-line-off)
(add-hook 'evil-visual-state-exit-hook 'doom|hl-line-on))
2016-05-01 13:05:25 +08:00
2016-04-26 14:00:19 +08:00
(use-package visual-fill-column :defer t
:config
(setq-default visual-fill-column-center-text nil
visual-fill-column-width fill-column))
2016-04-12 14:59:36 +08:00
(use-package highlight-indentation
:commands (highlight-indentation-mode
highlight-indentation-current-column-mode)
2016-04-12 14:59:36 +08:00
:init
(add-hook! (nxml-mode yaml-mode json-mode scss-mode
2016-04-12 14:59:36 +08:00
c-mode-common ruby-mode python-mode lua-mode)
'highlight-indentation-mode)
(after! editorconfig
(advice-add 'highlight-indentation-guess-offset
2016-05-21 10:37:30 +08:00
:override 'doom*hl-indent-guess-offset))
2016-04-12 14:59:36 +08:00
;; A long-winded method for ensuring whitespace is maintained (so that
;; highlight-indentation-mode can display them consistently)
(add-hook! highlight-indentation-mode
(if highlight-indentation-mode
(progn
2016-05-21 10:37:30 +08:00
(doom/add-whitespace)
(add-hook 'after-save-hook 'doom/add-whitespace nil t)
(add-hook 'before-save-hook 'delete-trailing-whitespace nil t))
2016-05-21 10:37:30 +08:00
(remove-hook 'after-save-hook 'doom/add-whitespace t)
(remove-hook 'before-save-hook 'delete-trailing-whitespace t))))
2016-04-12 14:59:36 +08:00
(use-package highlight-numbers :commands (highlight-numbers-mode))
(use-package rainbow-delimiters
:commands rainbow-delimiters-mode
2016-05-24 05:13:59 +08:00
:config (setq rainbow-delimiters-max-face-count 3)
2016-03-06 13:44:22 +08:00
:init
2016-05-24 05:13:59 +08:00
(add-hook! (emacs-lisp-mode lisp-mode js-mode css-mode c-mode-common)
'rainbow-delimiters-mode))
2016-05-24 05:13:59 +08:00
;; NOTE hl-line-mode and rainbow-mode don't play well together
2016-04-12 14:56:30 +08:00
(use-package rainbow-mode
:commands (rainbow-mode)
2016-05-24 05:13:59 +08:00
:init (add-hook 'rainbow-mode-hook 'doom|hl-line-off))
2015-10-26 13:29:38 +08:00
(use-package nlinum
2015-10-28 15:31:51 +08:00
:commands nlinum-mode
2015-06-06 18:40:33 +08:00
:preface
(setq linum-format "%3d ")
(defvar nlinum-format "%4d ")
2016-05-21 10:37:30 +08:00
(defvar doom--hl-nlinum-overlay nil)
(defvar doom--hl-nlinum-line nil)
2015-11-10 04:52:42 +08:00
:init
2015-11-11 07:01:57 +08:00
(add-hook!
2015-12-11 05:15:09 +08:00
(markdown-mode prog-mode scss-mode web-mode conf-mode)
2016-05-01 11:13:39 +08:00
'nlinum-mode)
(add-hook! 'nlinum-mode-hook
2016-05-27 06:51:39 +08:00
(if nlinum-mode-hook
(add-hook 'post-command-hook 'doom|nlinum-hl-line nil t)
(remove-hook 'post-command-hook 'doom|nlinum-hl-line t)))
2015-10-03 16:56:33 +08:00
:config
2016-05-25 10:50:39 +08:00
;; Calculate line number column width
2015-06-15 15:05:52 +08:00
(add-hook! nlinum-mode
2016-05-24 05:13:59 +08:00
(setq nlinum--width (length (save-excursion (goto-char (point-max))
2016-05-25 10:50:39 +08:00
(format-mode-line "%l")))))
;; Disable nlinum when making frames, otherwise we get linum face error
;; messages that prevent frame creation.
(add-hook 'before-make-frame-hook 'doom|nlinum-disable)
(add-hook 'after-make-frame-functions 'doom|nlinum-enable))
2015-10-26 13:29:38 +08:00
2015-06-06 18:40:33 +08:00
2016-04-26 14:03:42 +08:00
;;
;; Mode-line
;;
2015-06-06 18:40:33 +08:00
NARF v0.7.0 vcs: + +git-gutter to conf-modes; -git-gutter from evil-insert-state-exit + switch github-browse-file for browse-at-remote + fix <leader>ob; add <leader>d[./sr] vc bindings + vc-annotate bindings and initial state Workgroups2 integration: + don't mess with buffers (speeds up emacs a lot!) + unicode numbers in display + single display function + remember workgroup uid instead (and smarter :tabrename) + clean up after wg update Org-mode + give highlight precedence to links in org-mode + enable encryption + config clean up + use different font for org + exclude attachments in recentf + redo latex and inline-image config + add narf/org-open-notes + update file templates for org CRM Mode-line + polish mode-line + decouple from spaceline-segments.el + refactor narf|spaceline-env-update + add macro-recording and buffer-size indicators to mode-line + python: '2>&1' in env-command + flycheck fringe indicator: change to arrow Aesthetics + update narf-dark-theme + add narf-minibuffer-active face + change writing indicator in writing-mode Misc + fix whitespace in display-startup-echo-area-message + reset fonts for more unicode characters + custom imenu entries + helm-imenu fontification + enable yascroll-bar in REPLs + reorganize my-commands.el + force quit iedit on ESC in normal mode + update snippets submodule + remove ido init (helm handles it all) [EXPERIMENTAL] + back to Terminus(TTF) font + popwin: update config for git-gutter and vc-diff windows + highlight :g[lobal] and :al[ign] matches + decouple narf/get-buffers+narf/get-all-buffers from wg-mess-with-buffer-list + fix narf/helm-buffers-dwim (add interactive form)
2015-12-12 05:51:04 +08:00
(use-package spaceline
2015-11-07 13:20:04 +08:00
:init
2016-05-21 10:37:30 +08:00
(defvar-local doom--env-version nil)
(defvar-local doom--env-command nil)
(defvar powerline-height 26)
2016-05-08 09:57:43 +08:00
(defvar powerline-default-separator nil)
2015-09-29 03:55:25 +08:00
2016-04-26 14:03:42 +08:00
:config
(defface mode-line-is-modified nil "Face for mode-line modified symbol")
(defface mode-line-buffer-file nil "Face for mode-line buffer file name")
(defface mode-line-buffer-path nil "Face for mode-line buffer file path")
2015-10-01 01:47:57 +08:00
2016-03-30 11:48:06 +08:00
;; Custom modeline segments
(spaceline-define-segment *buffer-path
(concat
(when buffer-file-name
(powerline-raw
(f-dirname
2016-05-21 10:37:30 +08:00
(let ((buffer-path (f-relative buffer-file-name (doom/project-root)))
(max-length (truncate (/ (window-body-width) 1.75))))
(concat (projectile-project-name) "/"
(if (> (length buffer-path) max-length)
(let ((path (reverse (split-string buffer-path "/" t)))
(output ""))
(when (and path (equal "" (car path)))
(setq path (cdr path)))
(while (and path (<= (length output) (- max-length 4)))
(setq output (concat (car path) "/" output))
(setq path (cdr path)))
(when path
(setq output (concat "../" output)))
(when (string-suffix-p "/" output)
(setq output (substring output 0 -1)))
output)
buffer-path))))
(if active 'mode-line-buffer-path)))
(powerline-raw "%b" (if active 'mode-line-buffer-file))
(when buffer-file-name
(powerline-raw
(concat (when buffer-file-name
(concat
2016-05-24 05:13:59 +08:00
(if (buffer-modified-p) "")
(if (not (file-exists-p buffer-file-name)) "[!]")))
(if buffer-read-only "[RO]"))
'mode-line-is-modified)))
:tight-right t
:skip-alternate t)
2016-03-30 11:48:06 +08:00
(spaceline-define-segment *buffer-position
"A more vim-like buffer position."
(concat "(%l,%c) "
(let ((start (window-start))
(end (window-end))
(pend (point-max)))
(if (and (eq start 1)
(eq end pend))
":All"
(let ((perc (/ end 0.01 pend)))
(cond ((= start 1) ":Top")
((>= perc 100) ":Bot")
(t (format ":%d%%%%" perc))))))
" "))
2016-03-30 11:48:06 +08:00
(defface mode-line-vcs-info nil '((t (:inherit warning))))
(defface mode-line-vcs-warning nil '((t (:inherit warning))))
2016-03-30 11:48:06 +08:00
(spaceline-define-segment *vc
"Version control info"
(when vc-mode
(propertize
(concat "" (substring vc-mode (+ 2 (length (symbol-name (vc-backend buffer-file-name))))))
'face (when active
(let ((state (vc-state buffer-file-name)))
(cond ((memq state '(edited added))
'mode-line-vcs-info)
((memq state '(removed needs-merge needs-update conflict removed unregistered))
'mode-line-vcs-warning)))))))
2016-03-30 11:48:06 +08:00
;; search indicators
(defface mode-line-count-face nil "")
(make-variable-buffer-local 'anzu--state)
(spaceline-define-segment *anzu
"Show the current match number and the total number of matches. Requires
anzu to be enabled."
(when (and (featurep 'evil-anzu)
(evil-ex-hl-active-p 'evil-ex-search))
(powerline-raw
(let ((here anzu--current-position)
(total anzu--total-matched))
(format " %s/%d%s "
here total
(if anzu--overflow-p "+" "")))
(if active 'mode-line-count-face 'mode-line-inactive)))
2016-03-30 11:48:06 +08:00
:tight t)
(spaceline-define-segment *iedit
"Show the number of iedit regions matches + what match you're on."
(when (bound-and-true-p iedit-mode)
(propertize
(let ((this-oc (iedit-find-current-occurrence-overlay))
(length (or (ignore-errors (length iedit-occurrences-overlays)) 0)))
(format
" %s/%s "
(save-excursion
(unless this-oc
(iedit-prev-occurrence)
(setq this-oc (iedit-find-current-occurrence-overlay)))
(if this-oc
;; NOTE: Not terribly reliable
(- length (-elem-index this-oc iedit-occurrences-overlays))
"-"))
length))
'face (if active 'mode-line-count-face 'mode-line-inactive)))
:tight t)
2016-03-30 11:48:06 +08:00
(spaceline-define-segment *evil-substitute
"Show number of :s matches in real time."
(when (and (evil-ex-p) (evil-ex-hl-active-p 'evil-ex-substitute))
(powerline-raw
(let ((range (if evil-ex-range
(cons (car evil-ex-range) (cadr evil-ex-range))
(cons (line-beginning-position) (line-end-position))))
(pattern (car-safe (evil-delimited-arguments evil-ex-argument 2))))
(if pattern
(format " %s matches "
(count-matches pattern (car range) (cdr range))
evil-ex-argument)
" ... "))
(if active 'mode-line-count-face 'mode-line-inactive)))
:tight t)
2016-03-30 11:48:06 +08:00
(spaceline-define-segment *macro-recording
"Show when recording macro."
(when (and active defining-kbd-macro)
(powerline-raw
(format " %s ▶ " (char-to-string evil-this-macro))
highlight-face))
2016-05-01 13:05:25 +08:00
:tight t)
2016-03-30 11:48:06 +08:00
(spaceline-define-segment *buffer-encoding-abbrev
"The line ending convention used in the buffer."
(unless (string-match-p "\\(utf-8\\|undecided\\)"
(symbol-name buffer-file-coding-system))
(format "%s" buffer-file-coding-system)))
2016-03-30 11:48:06 +08:00
(spaceline-define-segment *major-mode
2016-05-08 09:57:43 +08:00
"The major mode, including process, environment and text-scale info."
(concat (format "%s" mode-name)
(if (stringp mode-line-process) mode-line-process)
2016-05-21 10:37:30 +08:00
(if doom--env-version (concat " " doom--env-version))
(and (featurep 'face-remap)
(/= text-scale-mode-amount 0)
(format " (%+d)" text-scale-mode-amount))))
2016-03-30 11:48:06 +08:00
(spaceline-define-segment *selection-info
2016-05-08 09:57:43 +08:00
"Information about the current selection."
(when (and active (evil-visual-state-p))
(powerline-raw
(let ((reg-beg (region-beginning))
(reg-end (region-end))
(evil (eq 'visual evil-state)))
(let ((lines (count-lines reg-beg (min (1+ reg-end) (point-max))))
(chars (- (1+ reg-end) reg-beg))
(cols (1+ (abs (- (evil-column reg-end)
(evil-column reg-beg))))))
(cond
;; rectangle selection
((or (bound-and-true-p rectangle-mark-mode)
(and evil (eq 'block evil-visual-selection)))
(format " %dx%dB " lines (if evil cols (1- cols))))
;; line selection
((or (> lines 1) (eq 'line evil-visual-selection))
(if (and (eq evil-state 'visual) (eq evil-this-type 'line))
2016-05-24 05:14:37 +08:00
(format " %dL " lines)
(format " %dC %dL " chars lines)))
(t (format " %dC " (if evil chars (1- chars)))))))
highlight-face))
:tight t)
2016-03-30 11:48:06 +08:00
;; flycheck
2016-05-24 05:14:37 +08:00
(defface doom-flycheck-error '((t (:inherit error)))
2016-03-30 11:48:06 +08:00
"Face for flycheck error feedback in the modeline.")
2016-05-24 05:14:37 +08:00
(defface doom-flycheck-warning '((t (:inherit warning)))
2016-03-30 11:48:06 +08:00
"Face for flycheck warning feedback in the modeline.")
2016-05-21 10:37:30 +08:00
(defvar-local doom--flycheck-err-cache nil "")
(defvar-local doom--flycheck-cache nil "")
2016-03-30 11:48:06 +08:00
(spaceline-define-segment *flycheck
"Persistent and cached flycheck indicators in the mode-line."
(when (and (bound-and-true-p flycheck-mode)
2016-03-30 11:48:06 +08:00
(or flycheck-current-errors
(eq 'running flycheck-last-status-change)))
2016-05-21 10:37:30 +08:00
(or (and (or (eq doom--flycheck-err-cache doom--flycheck-cache)
(memq flycheck-last-status-change '(running not-checked)))
2016-05-21 10:37:30 +08:00
doom--flycheck-cache)
(and (setq doom--flycheck-err-cache flycheck-current-errors)
(setq doom--flycheck-cache
(let ((fe (doom/-flycheck-count 'error))
(fw (doom/-flycheck-count 'warning)))
(concat
(if fe (propertize (format " ⚠%s " fe)
'face (if active
2016-05-24 05:14:37 +08:00
'doom-flycheck-error
'mode-line)))
(if fw (propertize (format " ⚠%s " fw)
'face (if active
2016-05-24 05:14:37 +08:00
'doom-flycheck-warning
'mode-line)))))))))
:tight t)
2016-03-30 11:48:06 +08:00
(spaceline-define-segment *pad
2016-05-08 09:57:43 +08:00
"Padding, to ensure the mode-line is `powerline-height' pixels tall"
(pl/percent-xpm powerline-height 100 0 100 0 3 (if active "#00B3EF") nil)
:tight t)
(spaceline-compile
2016-05-11 17:36:49 +08:00
'main
'(*pad
((*macro-recording *anzu *iedit *evil-substitute *flycheck *selection-info)
:skip-alternate t
:tight t)
*buffer-path)
'(*vc
*major-mode
*env-version
*buffer-encoding-abbrev
(global :when active)
*buffer-position))
;;
(spaceline-define-segment *default-dir
"Shows default-directory"
(concat "[" (abbreviate-file-name default-directory) "]")
:face other-face)
(spaceline-compile
'scratch
'(*pad
((*macro-recording *anzu *iedit *evil-substitute *flycheck *selection-info)
:skip-alternate t
:tight t)
*buffer-path
*default-dir)
'(*major-mode
*env-version
*buffer-encoding-abbrev
(global :when active)
*buffer-position))
2016-05-26 17:23:25 +08:00
;;
(spaceline-define-segment *eldoc
(and (bound-and-true-p str) str)
:tight t
:face 'mode-line)
(spaceline-define-segment *eldoc-pad
"Padding, to ensure the mode-line is `powerline-height' pixels tall"
(pl/percent-xpm powerline-height 100 0 100 0 3 "#B3EF00" nil)
:tight t
:face 'mode-line)
(spaceline-compile
'eldoc '(*eldoc-pad *eldoc) '())
2015-10-01 01:47:57 +08:00
;; Initialize modeline
(setq-default mode-line-format '("%e" (:eval (spaceline-ml-main)))))
2015-06-05 06:23:21 +08:00
(provide 'core-ui)
;;; core-ui.el ends here