aboutsummaryrefslogtreecommitdiff
path: root/.emacs.d
diff options
context:
space:
mode:
authorGuangxiong Lin <[email protected]>2022-02-22 19:22:28 +0800
committerGuangxiong Lin <[email protected]>2022-02-22 19:22:28 +0800
commitfc92874209a7c933da422f2151da646ef188368d (patch)
treee335e61d0863c67d36ee1f3434cca85d88bb3eaf /.emacs.d
parent973ad83ff3f517b01ad4bce80379b74e17614f4d (diff)
downloaddotfiles-fc92874209a7c933da422f2151da646ef188368d.tar.gz
dotfiles-fc92874209a7c933da422f2151da646ef188368d.tar.bz2
dotfiles-fc92874209a7c933da422f2151da646ef188368d.zip
Add go-dlv emacs package
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/lisp/init-lang.el4
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)