Compare commits

..

No commits in common. "457a1d9be4ea5d2f616c63ced7727e4abbc24140" and "47d7e31800e72c626b783065269fb79d4694fcf1" have entirely different histories.

55
init.el
View File

@ -568,9 +568,6 @@
(use-package misc (use-package misc
:commands (zap-up-to-char zap-to-char)) :commands (zap-up-to-char zap-to-char))
(use-package project
:init (setq project-switch-commands 'project-dired))
(use-package quail (use-package quail
:init (setq default-input-method "TeX") :init (setq default-input-method "TeX")
:config (add-hook 'input-method-activate-hook :config (add-hook 'input-method-activate-hook
@ -645,15 +642,7 @@
:commands (winner-mode winner-undo winner-redo)) :commands (winner-mode winner-undo winner-redo))
;; * Basic External Packages ;; * Essential external packages
(use-package crux
:ensure t
:commands (crux-eval-and-replace
crux-smart-open-line-above
crux-kill-whole-line
crux-cleanup-buffer-or-region
crux-delete-buffer-and-file))
(use-package dash (use-package dash
:defer nil :defer nil
@ -661,6 +650,12 @@
(global-dash-fontify-mode) (global-dash-fontify-mode)
(dash-register-info-lookup))) (dash-register-info-lookup)))
(use-package hydra
:pin "melpa-stable")
;; `lv' is a dependency of `hydra'
(add-to-list 'package-pinned-packages '(lv . "melpa-stable"))
(use-package db-utils (use-package db-utils
:commands (endless/fill-or-unfill :commands (endless/fill-or-unfill
db/delete-trailing-whitespace-maybe db/delete-trailing-whitespace-maybe
@ -708,24 +703,13 @@
:pin "melpa-stable" :pin "melpa-stable"
:commands (exec-path-from-shell-copy-envs)) :commands (exec-path-from-shell-copy-envs))
(use-package hydra (use-package crux
:pin "melpa-stable")
;; `lv' is a dependency of `hydra'
(add-to-list 'package-pinned-packages '(lv . "melpa-stable"))
(use-package projectile
:ensure t :ensure t
:commands (projectile-mode) :commands (crux-eval-and-replace
:defines (projectile-known-projects) crux-smart-open-line-above
:bind (:map projectile-mode-map ("C-c p" . projectile-command-map)) crux-kill-whole-line
:init (setq projectile-switch-project-action 'projectile-dired crux-cleanup-buffer-or-region
projectile-completion-system 'helm crux-delete-buffer-and-file))
projectile-ignored-project-function #'file-remote-p
projectile-create-missing-test-files t
projectile-known-projects-file (expand-file-name "private/projectile-bookmarks.eld"
emacs-d))
:diminish projectile-mode)
;; * Text editing ;; * Text editing
@ -1622,6 +1606,19 @@ point to the beginning of buffer first."
:commands (page-break-lines-mode) :commands (page-break-lines-mode)
:diminish page-break-lines-mode) :diminish page-break-lines-mode)
(use-package projectile
:ensure t
:commands (projectile-mode)
:defines (projectile-known-projects)
:bind (:map projectile-mode-map ("C-c p" . projectile-command-map))
:init (setq projectile-switch-project-action 'projectile-dired
projectile-completion-system 'helm
projectile-ignored-project-function #'file-remote-p
projectile-create-missing-test-files t
projectile-known-projects-file (expand-file-name "private/projectile-bookmarks.eld"
emacs-d))
:diminish projectile-mode)
;; * Mail ;; * Mail