Add linter support

This commit is contained in:
Jesús
2022-01-15 13:43:57 -05:00
parent a066539b7f
commit 46552ee63d
4 changed files with 28 additions and 2 deletions

23
modules/init-linter.el Normal file
View File

@@ -0,0 +1,23 @@
;;; init-linter.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
;;---------------------------
;; Lsp Mode
;;---------------------------
(use-package lsp-mode
:config
(add-hook 'lsp-mode-hook #'lsp-enable-which-key-integration)
(add-hook 'prog-mode-hook #'lsp))
(use-package lsp-treemacs
:config
(lsp-treemacs-sync-mode 1))
(use-package dap-mode)
(provide 'init-linter)
;; End:
;;; init-linter.el ends here