Calling this pivotal macro "def-package!" has frequently been a source of confusion. It is a thin wrapper around use-package, and it should be obvious that it is so. For this reason, and to match the naming convention used with other convenience macros/wrappers, it is now use-package!. Also changes def-package-hook! -> use-package-hook! The old macros are now marked obsolete and will be removed when straight integration is merged.
26 lines
606 B
EmacsLisp
26 lines
606 B
EmacsLisp
;;; config/default/+emacs.el -*- lexical-binding: t; -*-
|
|
|
|
(require 'projectile) ; we need its keybinds immediately
|
|
|
|
|
|
;;
|
|
;;; Reasonable defaults
|
|
|
|
(setq shift-select-mode t)
|
|
(delete-selection-mode +1)
|
|
|
|
(use-package! expand-region
|
|
:commands (er/contract-region er/mark-symbol er/mark-word)
|
|
:config
|
|
(def-advice! doom--quit-expand-region-a ()
|
|
"Properly abort an expand-region region."
|
|
:before '(evil-escape doom/escape)
|
|
(when (memq last-command '(er/expand-region er/contract-region))
|
|
(er/contract-region 0))))
|
|
|
|
|
|
;;
|
|
;;; Keybinds
|
|
|
|
(when (featurep! +bindings)
|
|
(load! "+emacs-bindings"))
|