aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-21 00:14:24 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-21 00:14:24 -0400
commite4f0d2dbf8accfad57e73b23df1be08c9bdd72d2 (patch)
treed52af51b093a3df6aad29d60c6e4d2c01e1e4b3e
parentUse hooks to start `diff-hl` mode only in `prog-mode` buffers (diff)
downloadmmosmacs-e4f0d2dbf8accfad57e73b23df1be08c9bdd72d2.tar.gz
mmosmacs-e4f0d2dbf8accfad57e73b23df1be08c9bdd72d2.tar.bz2
mmosmacs-e4f0d2dbf8accfad57e73b23df1be08c9bdd72d2.zip
Use `flycheck` for syntax checking
-rw-r--r--init.el21
1 files changed, 21 insertions, 0 deletions
diff --git a/init.el b/init.el
index 3961269..e4b5490 100644
--- a/init.el
+++ b/init.el
@@ -792,6 +792,27 @@
792 792
793 793
794;; --------------------------------------------------------------------- 794;; ---------------------------------------------------------------------
795;;; Development Environment
796;; ------------------------
797;; MMOSMacs is intended to serve as a full-featured IDE
798;; ---------------------------------------------------------------------
799
800;; ---------------------------------
801;; Syntax checking
802;; ---------------
803;; I'd like to know when I'm making
804;; a mistake.
805;; ---------------------------------
806
807;; Flycheck
808(use-package flycheck
809 :straight t
810 :init (global-flycheck-mode))
811
812
813
814
815;; ---------------------------------------------------------------------
795;;; Keybinds 816;;; Keybinds
796;; --------- 817;; ---------
797;; For now, just a few simple changes. 818;; For now, just a few simple changes.