Added counsel into use-package

This commit is contained in:
Marcin Woźniak 2021-11-02 21:10:51 +01:00
parent edadbf8a7c
commit 0b87cad339
Signed by: y0rune
GPG Key ID: F204C385F57EB348

View File

@ -105,7 +105,13 @@
)
:config
(amx-mode t)
)
)
;; Counsel
(use-package counsel
:ensure t
)
;; Custom theme
@ -136,15 +142,6 @@
(message "Monz not available; not configuring") )
(setq default-input-method "japanese-mozc")
;; Enable Smex
(use-package smex
:ensure t
:init
(smex-initialize)
:bind
("M-x" . smex)
)
;; reveal dependency
(use-package htmlize
:ensure t
@ -196,7 +193,7 @@
(defun rc/get-default-font ()
(cond
((eq system-type 'windows-nt) "Consolas-13")
((eq system-type 'gnu/linux) "xos4 Terminus Bold 16")))
((eq system-type 'gnu/linux) "xos4 Terminus (TTF) Medium 16")))
(add-to-list 'default-frame-alist `(font . ,(rc/get-default-font)))