make helm smaller
This commit is contained in:
parent
57c21a4257
commit
e49ba2d4bd
8
conf.el
8
conf.el
|
@ -99,7 +99,13 @@
|
|||
helm-recentf-fuzzy-match t
|
||||
helm-semantic-fuzzy-match t
|
||||
helm-imenu-fuzzy-match t
|
||||
helm-scroll-amount 8))
|
||||
helm-scroll-amount 8)
|
||||
|
||||
(add-to-list 'display-buffer-alist
|
||||
`(,(rx bos "*helm" (* not-newline) "*" eos)
|
||||
(display-buffer-in-side-window)
|
||||
(inhibit-same-window . t)
|
||||
(window-height . 0.4))))
|
||||
|
||||
(helm-autoresize-mode 1)
|
||||
(require 'helm-config)
|
||||
|
|
10
conf.org
10
conf.org
|
@ -148,7 +148,15 @@ NOTE: this only works if we start term after gui, and term has light bg. not big
|
|||
helm-recentf-fuzzy-match t
|
||||
helm-semantic-fuzzy-match t
|
||||
helm-imenu-fuzzy-match t
|
||||
helm-scroll-amount 8))
|
||||
helm-scroll-amount 8)
|
||||
|
||||
;; I liked the way ido-veritcal worked
|
||||
;; less invasive...
|
||||
(add-to-list 'display-buffer-alist
|
||||
`(,(rx bos "*helm" (* not-newline) "*" eos)
|
||||
(display-buffer-in-side-window)
|
||||
(inhibit-same-window . t)
|
||||
(window-height . 0.4))))
|
||||
|
||||
(helm-autoresize-mode 1)
|
||||
(require 'helm-config)
|
||||
|
|
Loading…
Reference in New Issue