summary refs log tree commit diff
path: root/config/init-flymake.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-04-06 11:22:57 -0700
committerFranck Cuny <franck@fcuny.net>2024-04-06 11:22:57 -0700
commit7c5780a719565630f58e7751afa8c7e458c49871 (patch)
treef8863ebcbd4a1e551a63374b3fee589affca1393 /config/init-flymake.el
parentmove some display stuff (diff)
downloademacs.d-7c5780a719565630f58e7751afa8c7e458c49871.tar.gz
a org file is definitely not the way for me
Diffstat (limited to 'config/init-flymake.el')
-rw-r--r--config/init-flymake.el21
1 files changed, 21 insertions, 0 deletions
diff --git a/config/init-flymake.el b/config/init-flymake.el
new file mode 100644
index 0000000..2dc0550
--- /dev/null
+++ b/config/init-flymake.el
@@ -0,0 +1,21 @@
+;;; init-flymake.el --- Configure flymake -*- lexical-binding: t -*-
+;; Author: Franck Cuny <franck@fcuny.net>
+
+;;; Commentary:
+
+;; Configure flymake
+
+;;; Code:
+
+(require 'flymake)
+
+(setq flymake-start-on-save-buffer t)
+(setq flymake-fringe-indicator-position 'left-fringe)
+(setq flymake-suppress-zero-counters t)
+(setq flymake-proc-compilation-prevents-syntax-check t)
+(setq elisp-flymake-byte-compile-load-path load-path)
+(setq flymake-no-changes-timeout 9999)
+
+(provide 'init-flymake)
+
+;;; init-flymake.el ends here