23 lines
419 B
EmacsLisp
23 lines
419 B
EmacsLisp
;;; earnecore-ivy.el --- Ivy -*- lexical-binding: t; -*-
|
|
|
|
;; Copyright (C) 2020-2021 earnest ma
|
|
;; SPDX-License-Identifier: MIT
|
|
;; Author: earnest ma <me@earne.link>
|
|
|
|
;;; Code:
|
|
(use-package ivy
|
|
:demand
|
|
:general
|
|
(earnemacs-spc-def
|
|
"/" 'ivy-switch-buffer
|
|
"bb" 'ivy-switch-buffer)
|
|
:config
|
|
(ivy-mode 1))
|
|
|
|
(use-package counsel
|
|
:demand
|
|
:after ivy)
|
|
|
|
(provide 'earnemod-ivy)
|
|
;;; earnemod-ivy.el ends here
|