Enable flycheck and evil-commentary on emacs

This commit is contained in:
Dave Gallant
2021-01-27 22:15:30 -05:00
parent deae6e2997
commit d1390b68c2
2 changed files with 8 additions and 0 deletions

View File

@@ -330,11 +330,13 @@
doom-themes doom-themes
evil evil
evil-collection evil-collection
evil-commentary
evil-matchit evil-matchit
evil-numbers evil-numbers
evil-surround evil-surround
evil-tutor evil-tutor
evil-visualstar evil-visualstar
flycheck
go-mode go-mode
highlight-parentheses highlight-parentheses
htmlize htmlize

View File

@@ -63,3 +63,9 @@
(global-set-key (kbd "<mouse-4>") 'scroll-down-line) (global-set-key (kbd "<mouse-4>") 'scroll-down-line)
(global-set-key (kbd "<mouse-5>") 'scroll-up-line) (global-set-key (kbd "<mouse-5>") 'scroll-up-line)
) )
;; Enable Flycheck
(global-flycheck-mode)
;; An easier way to toggle comments
(evil-commentary-mode)