diff options
author | Guangxiong Lin <[email protected]> | 2022-02-22 19:22:28 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2022-02-22 19:22:28 +0800 |
commit | fc92874209a7c933da422f2151da646ef188368d (patch) | |
tree | e335e61d0863c67d36ee1f3434cca85d88bb3eaf /.emacs.d/lisp/init-lang.el | |
parent | 973ad83ff3f517b01ad4bce80379b74e17614f4d (diff) | |
download | dotfiles-fc92874209a7c933da422f2151da646ef188368d.tar.gz dotfiles-fc92874209a7c933da422f2151da646ef188368d.tar.bz2 dotfiles-fc92874209a7c933da422f2151da646ef188368d.zip |
Add go-dlv emacs package
Diffstat (limited to '.emacs.d/lisp/init-lang.el')
-rw-r--r-- | .emacs.d/lisp/init-lang.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-lang.el b/.emacs.d/lisp/init-lang.el index 8f70682..69798cf 100644 --- a/.emacs.d/lisp/init-lang.el +++ b/.emacs.d/lisp/init-lang.el @@ -20,6 +20,10 @@ :mode (("\\.go$" . go-mode)) :hook ((go-mode . (lambda () (setq tab-width 4))))) +(use-package go-dlv + :ensure t + :after (go-mode)) + (use-package eglot :ensure t :commands (eglot) |