ivy key und dired options
This commit is contained in:
parent
b5c25d9637
commit
42ba9e1f08
1 changed files with 10 additions and 1 deletions
11
emacs/.emacs
11
emacs/.emacs
|
@ -4,6 +4,13 @@
|
||||||
;; Quote
|
;; 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")
|
(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 '("marmalade" . "http://marmalade-repo.org/packages/") package-archives)
|
||||||
(push '("melpa" . "http://melpa.milkbox.net/packages/") package-archives)
|
(push '("melpa" . "http://melpa.milkbox.net/packages/") package-archives)
|
||||||
|
|
||||||
|
@ -80,10 +87,12 @@
|
||||||
:config (progn
|
:config (progn
|
||||||
(ivy-mode 1)
|
(ivy-mode 1)
|
||||||
(setq ivy-use-virtual-buffers t)
|
(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
|
;; Yasnippet
|
||||||
(use-package yasnippet
|
(use-package yasnippet
|
||||||
|
:ensure t
|
||||||
:demand t
|
:demand t
|
||||||
:config (yas-global-mode 1))
|
:config (yas-global-mode 1))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue