Require LSP in Ruby
Some checks failed
/ Test config on ${{matrix.node}} (20) (push) Has been cancelled

This commit is contained in:
Maciej 2024-07-30 13:42:46 +03:00
parent c2caa56b35
commit 13ed56fa04
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
18 changed files with 87 additions and 64 deletions

View file

@ -9,7 +9,7 @@
:defer t
:init (setq-default markdown-command "pandoc"))
(defun icejam-lang-markdown/activate-markdown-mode ()
(defun icejam-lang/activate-markdown-mode ()
"Reconfigure markdown mode for your own purposes."
(icejam/set-indent 2)
(column-enforce-n 10000)
@ -21,7 +21,7 @@
(define-key markdown-mode-map (kbd "C-c <down>") nil)
(define-key markdown-mode-map (kbd "C-c C-v") 'markdown-preview))
(add-hook 'markdown-mode-hook 'icejam-lang-markdown/activate-markdown-mode)
(add-hook 'markdown-mode-hook 'icejam-lang/activate-markdown-mode)
(add-hook 'markdown-mode-hook 'display-line-numbers-mode)
(provide 'icejam-lang-markdown)