Compare commits

...

3 Commits

Author SHA1 Message Date
c08137b937 Merge. 2020-03-01 15:32:14 -06:00
981e78b80a Packa 2020-03-01 15:29:31 -06:00
95a0ad5d94 Switch to lsp for golang. 2020-03-01 15:29:16 -06:00
2 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@
'(epg-gpg-program "/usr/local/bin/gpg")
'(global-hl-line-mode t)
'(package-selected-packages
'(edit-indirect poetry yasnippet company-lsp ob-restclient virtualenvwrapper flymake-python-pyflakes lsp-ui lsp-mode jedi znc yaml-mode which-key use-package twittering-mode try smex racer python-mode pylint py-autopep8 powershell pdf-tools outline-magic org2blog multiple-cursors magit helm flycheck-rust eyebrowse exec-path-from-shell emojify elpy ein doom-themes dockerfile-mode docker csharp-mode ansible anaconda-mode ace-window))
(lsp poetry yasnippet company-lsp ob-restclient virtualenvwrapper flymake-python-pyflakes lsp-ui lsp-mode jedi znc yaml-mode which-key use-package twittering-mode try smex racer python-mode pylint py-autopep8 powershell pdf-tools outline-magic org2blog multiple-cursors magit helm flycheck-rust eyebrowse exec-path-from-shell emojify elpy ein doom-themes dockerfile-mode docker csharp-mode ansible anaconda-mode ace-window)))
'(znc-servers
`(("bouncer.awful.club" 5000 t
((freenode "blindidiotgod/freenode" ,znc-password)

View File

@ -1,6 +1,6 @@
(use-package eglot
(use-package lsp-mode
:ensure t
:config
(add-hook 'go-mode-hook 'eglot-ensure)
(add-hook 'go-mode-hook 'lsp-ensure)
(local-set-key "\C-x\C-m" 'compile)
(setq compile-command "go test -v && go vet && golint"))