diff --git a/emacs/custom/lsp.el b/emacs/custom/lsp.el index e66d840..498024d 100644 --- a/emacs/custom/lsp.el +++ b/emacs/custom/lsp.el @@ -22,4 +22,10 @@ (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) diff --git a/emacs/init.el b/emacs/init.el index 0867771..4f5b977 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -67,7 +67,7 @@ ("melpa" . "https://melpa.org/packages/") ("org" . "https://orgmode.org/elpa/"))) '(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)) '(ring-bell-function 'ignore) '(rustic-format-trigger 'on-compile) @@ -248,6 +248,9 @@ ;; Lua mode (use-package lua-mode) +;; Go mode +(use-package go-mode) + ;; Origamimode (use-package origami :ensure evil diff --git a/git/gitconfig b/git/gitconfig index 348cb99..5bc0474 100644 --- a/git/gitconfig +++ b/git/gitconfig @@ -4,6 +4,8 @@ email = anthony@anthonycicchetti.com [alias] 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] autocrlf = input excludesfile = /Users/acicchetti/.gitignore diff --git a/zsh/funcs/gopls b/zsh/funcs/gopls new file mode 100644 index 0000000..256a9e9 --- /dev/null +++ b/zsh/funcs/gopls @@ -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 \ No newline at end of file