Compare commits
No commits in common. "457a1d9be4ea5d2f616c63ced7727e4abbc24140" and "47d7e31800e72c626b783065269fb79d4694fcf1" have entirely different histories.
457a1d9be4
...
47d7e31800
55
init.el
55
init.el
@ -568,9 +568,6 @@
|
||||
(use-package misc
|
||||
:commands (zap-up-to-char zap-to-char))
|
||||
|
||||
(use-package project
|
||||
:init (setq project-switch-commands 'project-dired))
|
||||
|
||||
(use-package quail
|
||||
:init (setq default-input-method "TeX")
|
||||
:config (add-hook 'input-method-activate-hook
|
||||
@ -645,15 +642,7 @@
|
||||
:commands (winner-mode winner-undo winner-redo))
|
||||
|
||||
|
||||
;; * Basic 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))
|
||||
;; * Essential external packages
|
||||
|
||||
(use-package dash
|
||||
:defer nil
|
||||
@ -661,6 +650,12 @@
|
||||
(global-dash-fontify-mode)
|
||||
(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
|
||||
:commands (endless/fill-or-unfill
|
||||
db/delete-trailing-whitespace-maybe
|
||||
@ -708,24 +703,13 @@
|
||||
:pin "melpa-stable"
|
||||
:commands (exec-path-from-shell-copy-envs))
|
||||
|
||||
(use-package hydra
|
||||
:pin "melpa-stable")
|
||||
|
||||
;; `lv' is a dependency of `hydra'
|
||||
(add-to-list 'package-pinned-packages '(lv . "melpa-stable"))
|
||||
|
||||
(use-package projectile
|
||||
(use-package crux
|
||||
: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)
|
||||
:commands (crux-eval-and-replace
|
||||
crux-smart-open-line-above
|
||||
crux-kill-whole-line
|
||||
crux-cleanup-buffer-or-region
|
||||
crux-delete-buffer-and-file))
|
||||
|
||||
|
||||
;; * Text editing
|
||||
@ -1622,6 +1606,19 @@ point to the beginning of buffer first."
|
||||
:commands (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
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user