doomemacs/core/core-ui.el

434 lines
17 KiB
EmacsLisp
Raw Normal View History

2016-05-07 21:57:43 -04:00
;;; core-ui.el --- interface & mode-line config
2015-06-15 09:05:52 +02:00
2015-06-04 18:23:21 -04:00
(setq-default
2016-05-07 21:57:43 -04:00
blink-matching-paren nil ; don't blink--too distracting
2015-11-09 15:52:42 -05:00
show-paren-delay 0.075
2015-10-26 01:29:38 -04:00
2016-05-07 21:57:43 -04:00
;; Keep cursors and highlights in current window only
cursor-in-non-selected-windows nil
2016-04-08 16:15:37 -04:00
highlight-nonselected-windows nil
uniquify-buffer-name-style nil ; my mode-line does this for me
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
indicate-buffer-boundaries nil ; don't show where buffer starts/ends
indicate-empty-lines t ; show empty lines
fringes-outside-margins t ; switches order of fringe and margin
split-width-threshold nil ; favor horizontal splits
show-help-function nil ; hide :help-echo text
2016-04-08 16:15:37 -04:00
2016-04-26 02:00:19 -04:00
jit-lock-defer-time nil
2016-04-08 16:15:37 -04:00
jit-lock-stealth-nice 0.1
jit-lock-stealth-time 0.2
jit-lock-stealth-verbose nil
2016-03-03 15:04:14 -05:00
;; Disable bidirectional text support for slight performance bonus
2016-05-01 01:05:25 -04:00
bidi-display-reordering nil
2016-02-11 02:08:32 -05: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-11 16:51:04 -05:00
;; Minibuffer resizing
2016-05-01 01:05:25 -04:00
resize-mini-windows 'grow-only
max-mini-window-height 0.3
2016-03-03 15:04:14 -05:00
;; Remove arrow on the right fringe when wrapped
2015-12-09 02:03:13 -05:00
fringe-indicator-alist (delq (assoc 'continuation fringe-indicator-alist)
fringe-indicator-alist))
2016-04-19 02:08:48 -04:00
(fset 'yes-or-no-p 'y-or-n-p) ; y/n instead of yes/no
2016-04-05 23:58:32 -04:00
;; Ask for confirmation on exit only if there are real buffers left
(when window-system
(setq confirm-kill-emacs
(lambda (_)
(if (narf/get-real-buffers)
(y-or-n-p ">> Gee, I dunno Brain... Are you sure?")
t))))
2016-05-08 18:27:44 -04:00
(load-theme narf-current-theme t)
2016-05-07 21:57:43 -04:00
(tooltip-mode -1) ; show tooltips in echo area
2016-03-29 23:48:06 -04:00
;; set up minibuffer and fringe
2016-03-03 15:04:14 -05:00
(if (not window-system)
(menu-bar-mode -1)
2016-03-26 01:19:31 -04:00
(scroll-bar-mode -1) ; no scrollbar
(tool-bar-mode -1) ; no toolbar
2016-03-29 23:48:06 -04:00
;; full filename in frame title
(setq frame-title-format '(buffer-file-name "%f" ("%b")))
;; set fonts
2016-04-26 02:00:19 -04:00
(set-frame-font (setq narf-current-font narf-default-font) t)
(set-face-attribute 'default t :font narf-current-font)
2016-03-29 23:48:06 -04:00
;; standardize fringe width
2016-03-03 15:04:14 -05:00
(fringe-mode narf-fringe-size)
2016-03-29 23:48:06 -04:00
;; Show tilde in margin on empty lines
2016-03-03 15:04:14 -05:00
(define-fringe-bitmap 'tilde [64 168 16] nil nil 'center)
(set-fringe-bitmap-face 'tilde 'font-lock-comment-face)
2016-05-11 05:36:49 -04:00
(setcdr (assq 'empty-line fringe-indicator-alist) 'tilde)
2016-05-01 01:05:25 -04:00
;; Brighter minibuffer when active + no fringe in minibuffer
2016-03-29 23:48:06 -04:00
(defface narf-minibuffer-active '((t (:inherit mode-line)))
"Face for active minibuffer")
2016-04-26 02:00:19 -04:00
(add-hook! minibuffer-setup
2016-03-03 15:04:14 -05:00
(set-window-fringes (selected-window) 0 0 nil)
(make-local-variable 'face-remapping-alist)
(add-to-list 'face-remapping-alist '(default narf-minibuffer-active)))
2016-03-09 21:40:18 -05:00
(add-hook! 'after-init-hook (set-window-fringes (minibuffer-window) 0 0 nil)))
2015-11-14 02:35:15 -05:00
2016-03-29 23:48:06 -04:00
;; Try to display unicode characters without upsetting line-hieght (as much as possible)
2016-05-08 18:28:38 -04:00
(narf-fix-unicode "DejaVu Sans" '(?⚠ ?★ ?➊ ?➋ ?➌ ?➍ ?➎ ?❻ ?➐ ?➑ ?➒ ?➓))
2016-03-03 15:04:14 -05:00
2016-03-29 23:48:06 -04:00
;; on by default in Emacs 25; I prefer to enable on a mode-by-mode basis, so disable it
(when (and (> emacs-major-version 24) (featurep 'eldoc))
2016-01-30 21:16:10 -05:00
(global-eldoc-mode -1))
2015-11-10 18:01:57 -05:00
2016-03-03 15:04:14 -05:00
;; Highlight TODO/FIXME/NOTE tags
2016-05-01 01:05:25 -04:00
(defface narf-todo-face '((t (:inherit font-lock-warning-face))) "Face for TODOs")
(defface narf-fixme-face '((t (:inherit font-lock-warning-face))) "Face for FIXMEs")
(defface narf-note-face '((t (:inherit font-lock-warning-face))) "Face for NOTEs")
2015-11-07 20:16:31 -05:00
(add-hook! (prog-mode emacs-lisp-mode)
2016-04-26 02:00:19 -04:00
(font-lock-add-keywords
nil '(("\\<\\(TODO\\((.+)\\)?:?\\)" 1 'narf-todo-face prepend)
("\\<\\(FIXME\\((.+)\\)?:?\\)" 1 'narf-fixme-face prepend)
("\\<\\(NOTE\\((.+)\\)?:?\\)" 1 'narf-note-face prepend))))
2015-06-04 18:23:21 -04:00
2016-03-03 15:04:14 -05:00
;; Fade out when unfocused
2015-11-18 15:22:00 -05:00
(add-hook! focus-in (set-frame-parameter nil 'alpha 100))
2016-03-31 13:18:08 -04:00
(add-hook! focus-out (set-frame-parameter nil 'alpha 85))
2015-11-10 18:02:09 -05:00
2016-05-01 01:12:10 -04:00
;; Hide mode-line in help/compile window
(add-hook 'help-mode-hook 'narf|hide-mode-line)
2016-04-19 03:12:25 -04:00
(add-hook 'compilation-mode-hook 'narf|hide-mode-line)
2016-03-03 15:04:14 -05:00
;;
;; Plugins
;;
2016-05-01 01:05:25 -04:00
(use-package hl-line
:init
2016-05-07 21:57:43 -04:00
(add-hook! (prog-mode markdown-mode) 'hl-line-mode)
2016-05-01 01:05:25 -04:00
:config
(defvar-local narf--hl-line-mode nil)
2016-05-07 21:57:43 -04:00
(setq hl-line-sticky-flag nil
global-hl-line-sticky-flag nil)
2016-05-01 01:05:25 -04:00
(defun narf|hl-line-on () (if narf--hl-line-mode (hl-line-mode +1)))
(defun narf|hl-line-off () (if narf--hl-line-mode (hl-line-mode -1)))
(add-hook! hl-line-mode (if hl-line-mode (setq narf--hl-line-mode t)))
;; Disable line highlight in visual mode
(add-hook 'evil-visual-state-entry-hook 'narf|hl-line-off)
(add-hook 'evil-visual-state-exit-hook 'narf|hl-line-on))
2016-04-26 02:00:19 -04: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 02:59:36 -04:00
(use-package highlight-indentation
:commands (highlight-indentation-mode highlight-indentation-current-column-mode)
:init
(add-hook! (nxml-mode yaml-mode json-mode scss-mode
2016-04-12 02:59:36 -04:00
c-mode-common ruby-mode python-mode lua-mode)
'highlight-indentation-mode)
(after! editorconfig
2016-04-26 02:00:19 -04:00
(defun narf*hl-indent-guess-offset ()
(string-to-int (gethash 'indent_size (editorconfig-get-properties))))
2016-04-26 02:00:19 -04:00
(advice-add 'highlight-indentation-guess-offset :override 'narf*hl-indent-guess-offset))
2016-04-12 02:59:36 -04: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
(narf/add-whitespace)
(add-hook 'after-save-hook 'narf/add-whitespace nil t)
(add-hook 'before-save-hook 'delete-trailing-whitespace nil t))
(remove-hook 'after-save-hook 'narf/add-whitespace t)
(remove-hook 'before-save-hook 'delete-trailing-whitespace t))))
2016-04-12 02:59:36 -04:00
(use-package highlight-numbers :commands (highlight-numbers-mode))
(use-package rainbow-delimiters
:commands rainbow-delimiters-mode
2016-03-06 00:44:22 -05:00
:init
2016-03-29 01:08:50 -04:00
(add-hook! (emacs-lisp-mode lisp-mode js2-mode scss-mode c-mode-common)
2016-03-06 00:44:22 -05:00
'rainbow-delimiters-mode)
:config
2016-05-11 05:36:49 -04:00
(setq rainbow-delimiters-max-face-count 3))
2016-04-12 02:56:30 -04:00
(use-package rainbow-mode
:commands (rainbow-mode)
2015-11-18 15:22:00 -05:00
:init
2016-05-11 05:36:49 -04:00
;; NOTE: hl-line-mode and rainbow-mode don't play well together
(add-hook! (sass-mode scss-mode less-css-mode) '(rainbow-mode narf|hl-line-off)))
2015-10-26 01:29:38 -04:00
(use-package nlinum
2015-10-28 03:31:51 -04:00
:commands nlinum-mode
2015-06-06 06:40:33 -04:00
:preface
2016-03-23 11:51:29 -04:00
(defface linum-highlight-face '((t (:inherit linum))) "Face for line highlights")
2015-06-06 06:40:33 -04:00
(defvar narf--hl-nlinum-overlay nil)
2015-11-09 15:52:42 -05:00
(defvar narf--hl-nlinum-line nil)
2016-03-29 13:40:12 -04:00
(defvar nlinum-format "%4d ")
2015-11-19 05:50:04 -05:00
(setq linum-format "%3d ")
2015-11-09 15:52:42 -05:00
:init
2015-11-10 18:01:57 -05:00
(add-hook!
2015-12-10 16:15:09 -05:00
(markdown-mode prog-mode scss-mode web-mode conf-mode)
2016-04-30 23:13:39 -04:00
'nlinum-mode)
(add-hook! 'nlinum-mode-hook
(add-hook 'post-command-hook 'narf|nlinum-hl-line nil t))
2015-10-03 04:56:33 -04:00
:config
2015-06-15 09:05:52 +02:00
(add-hook! nlinum-mode
2015-10-26 01:29:38 -04:00
(setq nlinum--width
2015-12-09 01:59:50 -05:00
(length (save-excursion (goto-char (point-max))
(format-mode-line "%l"))))))
2015-10-26 01:29:38 -04:00
2015-06-06 06:40:33 -04:00
2016-04-26 02:03:42 -04:00
;;
;; Mode-line
;;
2015-06-06 06:40:33 -04: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-11 16:51:04 -05:00
(use-package spaceline
2015-11-07 00:20:04 -05:00
:init
2016-04-26 02:03:42 -04:00
(defvar-local narf--env-version nil)
(defvar-local narf--env-command nil)
(defvar powerline-height 23)
2016-05-07 21:57:43 -04:00
(defvar powerline-default-separator nil)
2015-09-28 15:55:25 -04:00
2016-04-26 02:03:42 -04: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-09-30 13:47:57 -04:00
2016-03-29 23:48:06 -04:00
;; Custom modeline segments
(spaceline-define-segment *buffer-path
(concat (when buffer-file-name
(powerline-raw
(f-dirname
(let ((buffer-path (file-relative-name buffer-file-name (narf/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)))
2016-03-29 23:48:06 -04:00
:tight-right t)
(spaceline-define-segment *buffer-modified
(unless (string-prefix-p "*" (buffer-name))
(powerline-raw
(concat (when buffer-file-name
(concat
(if (buffer-modified-p) "[+]")
(if (not (file-exists-p buffer-file-name)) "[!]")))
(if buffer-read-only "[RO]"))
'mode-line-is-modified))
2016-03-29 23:48:06 -04:00
:skip-alternate t
:tight t)
(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)))))))
:tight-left t)
2016-03-29 23:48:06 -04:00
(spaceline-define-segment *vc
"Version control info"
(when (and active vc-mode)
(powerline-raw
(substring vc-mode (+ 1 (length (symbol-name (vc-backend buffer-file-name)))))
other-face))
2016-03-29 23:48:06 -04:00
:tight-right t)
;; 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 (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-29 23:48:06 -04:00
:tight t)
(spaceline-define-segment *iedit
"Show the number of matches and what match you're on (or after). Requires iedit."
(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-29 23:48:06 -04: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-29 23:48:06 -04: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 01:05:25 -04:00
:tight t)
2016-03-29 23:48:06 -04: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-29 23:48:06 -04:00
(spaceline-define-segment *major-mode
2016-05-07 21:57:43 -04:00
"The major mode, including process, environment and text-scale info."
(concat (format "%s" mode-name)
(if (stringp mode-line-process) mode-line-process)
(if narf--env-version (concat " " narf--env-version))
(and (featurep 'face-remap)
(/= text-scale-mode-amount 0)
(format " (%+d)" text-scale-mode-amount)))
2016-03-29 23:48:06 -04:00
:tight-right t)
(spaceline-define-segment *selection-info
2016-05-07 21:57:43 -04: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))
(format "%dL" lines)
(format "%dC %dL" chars lines)))
(t (format "%dC" (if evil chars (1- chars)))))))
highlight-face)))
2016-03-29 23:48:06 -04:00
;; flycheck
(defun narf--flycheck-count (state)
"Return flycheck information for the given error type STATE."
2016-05-01 01:05:25 -04:00
(when (flycheck-has-current-errors-p state)
(if (eq 'running flycheck-last-status-change)
"?"
(cdr-safe (assq state (flycheck-count-errors flycheck-current-errors))))))
2016-03-29 23:48:06 -04:00
(defface spaceline-flycheck-error
'((t (:foreground "#FC5C94" :distant-foreground "#A20C41")))
"Face for flycheck error feedback in the modeline.")
(defface spaceline-flycheck-warning
'((t (:foreground "#F3EA98" :distant-foreground "#968B26")))
"Face for flycheck warning feedback in the modeline.")
(defface spaceline-flycheck-info
'((t (:foreground "#8DE6F7" :distant-foreground "#21889B")))
"Face for flycheck info feedback in the modeline.")
(defvar-local narf--flycheck-err-cache nil "")
(defvar-local narf--flycheck-cache nil "")
2016-03-29 23:48:06 -04:00
(spaceline-define-segment *flycheck
"Persistent and cached flycheck indicators in the mode-line."
(when (and (bound-and-true-p flycheck-mode)
2016-03-29 23:48:06 -04:00
(or flycheck-current-errors
(eq 'running flycheck-last-status-change)))
(or (and (or (eq narf--flycheck-err-cache narf--flycheck-cache)
(memq flycheck-last-status-change '(running not-checked)))
narf--flycheck-cache)
(and (setq narf--flycheck-err-cache flycheck-current-errors)
(setq narf--flycheck-cache
(let ((fe (narf--flycheck-count 'error))
(fw (narf--flycheck-count 'warning))
;; (fi (narf--flycheck-count 'info))
)
(concat
(if fe (propertize (format " ⚠%s " fe) 'face (if active 'spaceline-flycheck-error 'mode-line)))
(if fw (propertize (format " ⚠%s " fw) 'face (if active 'spaceline-flycheck-warning 'mode-line)))
;; (if fi (propertize (format " ⚠%s " fi) 'face 'spaceline-flycheck-info))
))))))
:tight t)
2016-03-29 23:48:06 -04:00
(defvar narf--mode-line-padding (pl/percent-xpm powerline-height 100 0 100 0 1 nil nil))
(spaceline-define-segment *pad
2016-05-07 21:57:43 -04:00
"Padding, to ensure the mode-line is `powerline-height' pixels tall"
narf--mode-line-padding
:tight t)
(spaceline-compile
2016-05-11 05:36:49 -04:00
'main
;; Left side
'(((*macro-recording *anzu *iedit *evil-substitute *flycheck)
:skip-alternate t
:tight t)
*buffer-path
*buffer-modified
*vc)
;; Right side
'(*selection-info
*major-mode
*env-version
*buffer-encoding-abbrev
(global :when active)
*buffer-position
*pad
))
2015-09-30 13:47:57 -04:00
;; Initialize modeline
(setq-default mode-line-format '("%e" (:eval (spaceline-ml-main)))))
2015-06-04 18:23:21 -04:00
(provide 'core-ui)
;;; core-ui.el ends here