blob: 2dc055012516077d849b46b55a3b64e6f41f7487 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|