.emacs.d/init.d/basics/ui.el

124 lines
3.9 KiB
EmacsLisp
Raw Normal View History

2019-10-14 17:38:14 +02:00
;;; ui.el --- Configure user interfaces. -*- lexical-binding: t; -*-
2020-05-26 07:06:22 +02:00
;; Time-stamp: <2020-05-26T06:39:54+0200>
2019-10-14 17:38:14 +02:00
;;; Commentary:
2019-11-09 18:55:55 +01:00
;; * treemacs
2019-10-14 18:02:20 +02:00
;; * ivy + counsel.
2019-10-14 17:38:14 +02:00
;;; Code:
2019-11-09 18:55:55 +01:00
;; Directory tree.
(require 'basics/package-management)
2019-11-09 18:55:55 +01:00
(use-package treemacs
:demand t
:after (display-line-numbers)
2020-03-10 14:33:47 +01:00
:custom ((treemacs-project-follow-cleanup t) ; Collapse projects when leaving.
(treemacs-silent-refresh t)) ; No log message on refresh.
:config (progn
(make-face 'hl-line-treemacs-face)
(set-face-attribute 'hl-line-treemacs-face nil
:background "#080011")
(when (>= emacs-major-version 27)
(set-face-attribute 'hl-line-treemacs-face nil
:extend t))
(defun my/treemacs-set-hl-line ()
(set (make-local-variable 'hl-line-face)
'hl-line-treemacs-face)))
:bind (("<f9>" . treemacs-select-window) ; Focus treemacs.
("C-<f9>" . treemacs) ; Toggle treemacs.
("M-<f9>" . treemacs-add-and-display-current-project)
2020-03-10 14:33:47 +01:00
(:map treemacs-mode-map
("<mouse-1>" . treemacs-single-click-expand-action)))
:hook ((treemacs-mode . my/disable-line-numbers)
(treemacs-mode . my/treemacs-set-hl-line)))
2019-11-09 18:55:55 +01:00
(use-package treemacs-projectile
2020-03-10 14:33:47 +01:00
:after (treemacs projectile))
2019-11-09 18:55:55 +01:00
(use-package treemacs-magit
2020-05-25 13:40:41 +02:00
:demand t
:after (treemacs magit))
2019-10-14 17:38:14 +02:00
;; Completion in many Emacs commands.
(use-package ivy
2019-10-15 14:23:28 +02:00
:demand t
:diminish ivy-mode
2020-03-10 14:33:47 +01:00
:custom ((ivy-use-virtual-buffers t)
(ivy-count-format "[%d/%d] ")
(ivy-wrap t))
:config (ivy-mode 1)
:bind (("C-c C-r" . ivy-resume)
(:map ivy-minibuffer-map
("M-<up>" . ivy-previous-history-element)
("M-<down>" . ivy-next-history-element)
("S-<return>" . ivy-immediate-done)))) ; Ignore completion.
2019-10-14 17:38:14 +02:00
;; Extensions for ivy
(use-package counsel
2020-05-26 07:06:22 +02:00
:demand t
2019-10-15 14:23:28 +02:00
:after (ivy)
2020-03-10 14:33:47 +01:00
:bind (("C-x C-f" . counsel-find-file)
("M-x" . counsel-M-x)))
2019-10-14 17:38:14 +02:00
;; Use icons in ivy.
(use-package all-the-icons-ivy
2020-05-26 07:06:22 +02:00
:demand t
2019-10-14 17:38:14 +02:00
:after (all-the-icons counsel)
2020-03-10 14:33:47 +01:00
:config (all-the-icons-ivy-setup))
2019-10-14 17:38:14 +02:00
;; More information in ivy mini-buffers.
(use-package ivy-rich
2020-05-26 07:06:22 +02:00
:demand t
2019-10-14 17:38:14 +02:00
;; all-the-icons-ivy would override the ivy-rich switch-buffer improvements.
:after (all-the-icons-ivy counsel)
2020-03-10 14:33:47 +01:00
:config (ivy-rich-mode 1))
2019-10-14 17:38:14 +02:00
2020-02-20 18:50:23 +01:00
;; Use icons in ivy-rich.
(use-package all-the-icons-ivy-rich
2020-05-26 07:06:22 +02:00
:demand t
2020-02-20 18:50:23 +01:00
:after (all-the-icons ivy-rich)
2020-03-10 14:33:47 +01:00
:config (all-the-icons-ivy-rich-mode 1))
2020-01-21 02:52:03 +01:00
(use-package ivy-purpose
:after (window-purpose)
2020-03-10 14:33:47 +01:00
:config (ivy-purpose-setup)
:bind (:map purpose-mode-map
("C-x b" . ivy-switch-buffer)))
2020-01-21 02:52:03 +01:00
2020-03-24 12:21:13 +01:00
(use-package ivy-emoji ; Insert emojis with ivy.
:after (ivy)
:bind ("C-c e" . ivy-emoji))
2020-02-11 16:47:12 +01:00
(use-package counsel-projectile
2020-05-26 07:06:22 +02:00
:demand t
2020-02-11 16:47:12 +01:00
:after (projectile)
2020-03-10 14:33:47 +01:00
:custom ((counsel-projectile-mode t)
(projectile-switch-project-action 'my/switch-project))
:config (progn
(defun my/counsel-projectile-switch-project-action (project)
"Call `my/switch-project'."
(let ((projectile-switch-project-action 'my/switch-project))
(counsel-projectile-switch-project-by-name project)))
(counsel-projectile-modify-action
'counsel-projectile-switch-project-action
'((add ("Y" my/counsel-projectile-switch-project-action
"open project in treemacs") 1)))))
;; Shows tabs of all visible buffers per window.
(when (>= emacs-major-version 27)
(use-package tab-line
:defer 4
:custom-face
(tab-line ((t (:inherit ruler-mode-default))))
(tab-line-tab ((t (:inherit ruler-mode-default))))
(tab-line-tab-inactive ((t (:inherit tab-line-tab))))
(tab-line-tab-current ((t (:inherit ruler-mode-fill-column))))
(tab-line-highlight ((t (:inherit tab-line-tab-current))))))
2019-10-14 17:38:14 +02:00
(provide 'basics/ui)
;;; ui.el ends here