diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-21 00:14:24 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-21 00:14:24 -0400 |
commit | e4f0d2dbf8accfad57e73b23df1be08c9bdd72d2 (patch) | |
tree | d52af51b093a3df6aad29d60c6e4d2c01e1e4b3e /init.el | |
parent | Use hooks to start `diff-hl` mode only in `prog-mode` buffers (diff) | |
download | mmosmacs-e4f0d2dbf8accfad57e73b23df1be08c9bdd72d2.tar.gz mmosmacs-e4f0d2dbf8accfad57e73b23df1be08c9bdd72d2.tar.bz2 mmosmacs-e4f0d2dbf8accfad57e73b23df1be08c9bdd72d2.zip |
Use `flycheck` for syntax checking
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -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. |