ivy key und dired options

This commit is contained in:
madmaurice 2017-05-18 01:48:46 +02:00
parent b5c25d9637
commit 42ba9e1f08

View file

@ -4,6 +4,13 @@
;; Quote
(setq initial-scratch-message ";; Simplicity and elegance are unpopular because\n;; they require hard work and discipline to achieve\n;; and education to be appreciated.\n;;\n;; - Dijkstra\n\n")
;; Default frame size
(setq initial-frame-alist
'(
(width . 110)
(height . 40)
))
;(push '("marmalade" . "http://marmalade-repo.org/packages/") package-archives)
(push '("melpa" . "http://melpa.milkbox.net/packages/") package-archives)
@ -80,10 +87,12 @@
:config (progn
(ivy-mode 1)
(setq ivy-use-virtual-buffers t)
(setq ivy-count-format "(%d/%d) ")))
(setq ivy-count-format "(%d/%d) ")
(define-key ivy-minibuffer-map (kbd "<C-return>") 'ivy-immediate-done)))
;; Yasnippet
(use-package yasnippet
:ensure t
:demand t
:config (yas-global-mode 1))