emacs.d/bundle/bundle--gui.el

51 lines
1.1 KiB
EmacsLisp

;; (use-package counsel
;; :bind (("C-M-j" . 'counsel-switch-buffer)
;; :map minibuffer-local-map
;; ("C-r" . 'counsel-minibuffer-history))
;; :custom
;; (counsel-linux-app-format-function #'counsel-linux-app-format-function-name-only)
;; :config
;; (counsel-mode 1))
;; (use-package ivy
;; :bind (("C-s" . swiper))
;; :init
;; (ivy-mode 1))
;; (use-package unicode-fonts
;; :config
;; (unicode-fonts-setup))
(load "bundle--all-the-icons")
(load "bundle--olivetti")
(load "bundle--shrface")
(load "bundle--doom")
(load "bundle--helpful")
(load "bundle--webjump")
(use-package ace-window)
(use-package rainbow-delimiters
:hook (prog-mode . rainbow-delimiters-mode))
(use-package emojify
:commands emojify-mode)
(use-package smartparens)
(use-package vertico
:init
(vertico-mode)
;; Different scroll margin
;; (setq vertico-scroll-margin 0)
;; Show more candidates
;; (setq vertico-count 20)
;; Grow and shrink the Vertico minibuffer
;; (setq vertico-resize t)
;; Optionally enable cycling for `vertico-next' and `vertico-previous'.
;; (setq vertico-cycle t)
)