Compare commits

..

No commits in common. "88bc5b3162581c28c787c7f2c64c8874e3a1db53" and "535bdda429dd4340ca9e06ab5ec9949eeca0e545" have entirely different histories.

21
init.el
View File

@ -2012,6 +2012,7 @@ point to the beginning of buffer first."
:init (setq helm-command-prefix-key "C-c h"
helm-input-idle-delay 0.0
helm-buffers-fuzzy-matching t
helm-mode-fuzzy-match t
helm-autoresize-min-height 20
helm-ff-auto-update-initial-value t
helm-ff-file-name-history-use-recentf t
@ -2029,11 +2030,9 @@ point to the beginning of buffer first."
helm-kill-ring-threshold 0 ; include all yanks in the kill ring
)
:config (progn
(eval-when-compile
(require 'helm-mode)
(require 'helm-buffers)
(require 'helm-ring)
(require 'helm-source))
(if (require 'helm-global-bindings nil :no-error)
(progn
@ -2103,7 +2102,7 @@ point to the beginning of buffer first."
(use-package company
:commands (company-mode global-company-mode)
:init (setq company-show-quick-access t))
:init (setq company-show-numbers t))
;; * Navigation
@ -2117,14 +2116,16 @@ is too slow (in this case, `db/important-document-path' should
eventuelly be set to nil, however)."
(interactive "P")
(eval-when-compile
(require 'helm-bookmark))
(require 'helm-bookmark)
(require 'helm-for-files)) ; for helm-source-recentf
(helm :sources (list
(helm-make-source "Frequently Used" 'helm-source-sync
:candidates (mapcar #'(lambda (entry)
(cons (car entry)
(caddr entry)))
db/frequently-used-features)
:action '(("Open" . call-interactively)))
:action '(("Open" . call-interactively))
:filtered-candidate-transformer #'helm-adaptive-sort)
;; Taken from `helm-buffers-list'
(helm-make-source "Buffers" 'helm-source-buffers)
@ -2336,7 +2337,10 @@ eventuelly be set to nil, however)."
:init (setq helm-emms-use-track-description-function t
helm-emms-default-sources '(helm-source-emms-streams
helm-source-emms-dired
helm-source-emms-files)))
helm-source-emms-files))
:config (progn
(require 'emms)
(require 'helm-adaptive)))
(use-package image
:init (setq image-use-external-converter t))
@ -2448,13 +2452,10 @@ eventuelly be set to nil, however)."
eshell-highlight-prompt nil
eshell-cd-on-directory t
eshell-expand-input-functions '(eshell-expand-history-references))
:config (progn
(eval-when-compile
(require 'em-prompt)
:config (progn (require 'em-prompt)
(require 'em-term)
(require 'em-cmpl)
(require 'em-hist)
(require 'em-glob))
(setenv "PAGER" "cat")