diff options
Diffstat (limited to '.config/emacs/modules/bd--devel.el')
-rw-r--r-- | .config/emacs/modules/bd--devel.el | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/.config/emacs/modules/bd--devel.el b/.config/emacs/modules/bd--devel.el index 6008904..fda79a9 100644 --- a/.config/emacs/modules/bd--devel.el +++ b/.config/emacs/modules/bd--devel.el @@ -37,8 +37,8 @@ buffer-file-name))))) (use-package autoformat - :custom - (autoformat-mode 1)) + :config + (setopt autoformat-mode 1)) (use-package hl-line :hook @@ -48,11 +48,10 @@ (use-package compile :demand t :hook ((compilation-filter . ansi-color-compilation-filter)) - :custom - (compilation-always-kill t) - (compilation-scroll-output 'first-error) - (compilation-ask-about-save nil) :config + (setopt compilation-always-kill t + compilation-scroll-output 'first-error + compilation-ask-about-save nil) (defun bd/compile-dwim (f) (let ((default-directory (bd/get-directory-dwim))) (call-interactively f))) @@ -67,8 +66,8 @@ (bd/compile-dwim #'compile)))) (use-package man - :custom - (Man-notify-method 'pushy)) + :config + (setopt Man-notify-method 'pushy)) (use-package eldoc :init @@ -82,14 +81,15 @@ ("C-c f p" . #'flymake-goto-prev-error) ("C-c f b" . #'flymake-show-buffer-diagnostics) ("C-c f p" . #'flymake-show-project-diagnostics)) - :custom - ;; (flymake-suppress-zero-counters t) - (flymake-no-changes-timeout nil) - (flymake-start-on-flymake-mode t) - (flymake-start-on-save-buffer t) - (flymake-proc-compilation-prevents-syntax-check t) - (flymake-wrap-around nil) - (flymake-show-diagnostics-at-end-of-line nil)) + :config + (setopt flymake-no-changes-timeout nil + flymake-start-on-flymake-mode t + flymake-start-on-save-buffer t + flymake-proc-compilation-prevents-syntax-check t + flymake-wrap-around nil + flymake-show-diagnostics-at-end-of-line nil)) + +(use-package geiser-guile) (use-package yasnippet :hook ((text-mode @@ -100,12 +100,12 @@ :hook css-mode) (use-package paren - :custom - (show-paren-delay 0) - (show-paren-highlight-openparen t) - (show-paren-context-when-offscreen t) - (show-paren-when-point-in-periphery t) - (show-paren-when-point-inside-paren t)) + :config + (setopt show-paren-delay 0 + show-paren-highlight-openparen t + show-paren-context-when-offscreen t + show-paren-when-point-in-periphery t + show-paren-when-point-inside-paren t)) (use-package rainbow-delimiters :hook prog-mode) |