Go mode, and gopls

This commit is contained in:
Anthony Cicchetti 2021-04-29 14:55:31 -04:00
parent a27a8dbcb1
commit 15821c1117
4 changed files with 22 additions and 1 deletions

View file

@ -22,4 +22,10 @@
(use-package rustic) (use-package rustic)
(add-hook 'go-mode-hook #'lsp-deferred)
(defun lsp-go-install-save-hooks ()
(add-hook 'before-save-hook #'lsp-format-buffer t t)
(add-hook 'before-save-hook #'lsp-organize-imports t t))
(add-hook 'go-mode-hook #'lsp-go-install-save-hooks)
(provide 'lsp) (provide 'lsp)

View file

@ -67,7 +67,7 @@
("melpa" . "https://melpa.org/packages/") ("melpa" . "https://melpa.org/packages/")
("org" . "https://orgmode.org/elpa/"))) ("org" . "https://orgmode.org/elpa/")))
'(package-selected-packages '(package-selected-packages
'(org-roam ox-jira consult embark-consult embark selectrum-prescient prescient marginalia consult-flycheck consult-selectrum selectrum lua-mode lsp-mode yaml-mode evil-lispy treemacs-magit treemacs-evil treemacs lsp-pyright lsp-ui rustic flycheck origami groovy-mode avy editorconfig org-crypt tree-sitter-langs tree-sitter centaur-tabs dashboard page-break-lines wakatime-mode super-save ox-pandoc evil-surround evil-collection undo-tree toc-org evil-org org-plus-contrib evil-goggles evil-expat evil-commentary auto-package-update lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit)) '(go-mode org-roam ox-jira consult embark-consult embark selectrum-prescient prescient marginalia consult-flycheck consult-selectrum selectrum lua-mode lsp-mode yaml-mode evil-lispy treemacs-magit treemacs-evil treemacs lsp-pyright lsp-ui rustic flycheck origami groovy-mode avy editorconfig org-crypt tree-sitter-langs tree-sitter centaur-tabs dashboard page-break-lines wakatime-mode super-save ox-pandoc evil-surround evil-collection undo-tree toc-org evil-org org-plus-contrib evil-goggles evil-expat evil-commentary auto-package-update lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit))
'(prescient-filter-method '(literal regexp initialism fuzzy)) '(prescient-filter-method '(literal regexp initialism fuzzy))
'(ring-bell-function 'ignore) '(ring-bell-function 'ignore)
'(rustic-format-trigger 'on-compile) '(rustic-format-trigger 'on-compile)
@ -248,6 +248,9 @@
;; Lua mode ;; Lua mode
(use-package lua-mode) (use-package lua-mode)
;; Go mode
(use-package go-mode)
;; Origamimode ;; Origamimode
(use-package origami (use-package origami
:ensure evil :ensure evil

View file

@ -4,6 +4,8 @@
email = anthony@anthonycicchetti.com email = anthony@anthonycicchetti.com
[alias] [alias]
pushall = !git remote | xargs -L1 git push --all pushall = !git remote | xargs -L1 git push --all
pr = "!f() { git fetch -fu ${2:-$(git remote |grep ^upstream || echo origin)} refs/pull/$1/head:pr/$1 && git checkout pr/$1; }; f"
pr-clean = "!git for-each-ref refs/heads/pr/* --format='%(refname)' | while read ref ; do branch=${ref#refs/heads/} ; git branch -D $branch ; done"
[core] [core]
autocrlf = input autocrlf = input
excludesfile = /Users/acicchetti/.gitignore excludesfile = /Users/acicchetti/.gitignore

10
zsh/funcs/gopls Normal file
View file

@ -0,0 +1,10 @@
local GO_BIN="$(go env GOPATH)/bin"
if [[ ! -d "${GO_BIN}" ]]; then
mkdir -p "${GO_BIN}"
fi
if [[ ! -a "${GO_BIN}/gopls" ]]; then
pushd "${GO_BIN}"
GO111MODULE=on go get golang.org/x/tools/gopls@latest
popd
fi