]> git.eshelyaron.com Git - dotfiles.git/commitdiff
Minor config updates
authorEshel Yaron <eshel@areionsec.com>
Sat, 4 Jun 2022 13:57:20 +0000 (16:57 +0300)
committerEshel Yaron <eshel@areionsec.com>
Sat, 4 Jun 2022 13:57:20 +0000 (16:57 +0300)
.emacs.d/esy.org

index 79781deda8972c2162d7a375f9bd1b93a01b76d7..2b81a275043818ba005c528b3b9bddd898e41ac5 100644 (file)
@@ -301,6 +301,7 @@ For a list of available frame parameters, see [[info:elisp#Frame Parameters][eli
     (global-hl-line-mode)
     (lin-global-mode 1)
     (transient-mark-mode)
+    (mouse-avoidance-mode 'banish)
     (show-paren-mode))
 
   (add-hook 'after-init-hook #'esy/setup-display)
@@ -1063,7 +1064,7 @@ does in the shell.
           completion-auto-select nil
           completion-styles '(basic orderless)
           completion-show-help nil
-          completions-header-format nil
+          completions-header-format (propertize "%s candidates:\n" 'face 'shadow)
           completion-auto-help 'visual
           completions-max-height 16
           completion-wrap-movement t)
@@ -1220,6 +1221,16 @@ does in the shell.
 :CUSTOM_ID: programming
 :END:
 
+** Compilation
+:PROPERTIES:
+:CUSTOM_ID: compilation
+:END:
+
+#+begin_src emacs-lisp
+  (setq safe-local-variable-values
+        '((compilation-read-command . nil)))
+#+end_src
+
 ** General =prog-mode= settings
 :PROPERTIES:
 :CUSTOM_ID: prog-mode