Get rid of some more byte-compiler warnings in main init file

This commit is contained in:
Daniel - 2023-10-27 16:30:19 +02:00
parent 535bdda429
commit b3d620d884
Signed by: dbo
GPG Key ID: 784AA8DF0CCDF625

10
init.el
View File

@ -2012,7 +2012,6 @@ 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
@ -2030,9 +2029,11 @@ 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
@ -2102,7 +2103,7 @@ point to the beginning of buffer first."
(use-package company
:commands (company-mode global-company-mode)
:init (setq company-show-numbers t))
:init (setq company-show-quick-access t))
;; * Navigation
@ -2452,10 +2453,13 @@ 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 (require 'em-prompt)
:config (progn
(eval-when-compile
(require 'em-prompt)
(require 'em-term)
(require 'em-cmpl)
(require 'em-hist)
(require 'em-glob))
(setenv "PAGER" "cat")