A Major mode for syntax highlighting of KQL code/files
- Download the =kql-mode.el= file and add it to your
custom-load-path
. - In your
~/.emacs.d/init.el
or~/.emacs
:
(add-to-list 'auto-mode-alist '("\\.kql\\'" . kql-mode))
From Melpa
M-x package-install RET kql-mode RET
.- In your
~/.emacs.d/init.el
or~/.emacs
:
(add-to-list 'auto-mode-alist '("\\.kql\\'" . kql-mode))
With use-package
(use-package kql-mode
:ensure t
:config
(add-to-list 'auto-mode-alist '("\\.kql\\'" . kql-mode)))
M-x kql-mode RET
MIT License