Go mode, and gopls
This commit is contained in:
parent
a27a8dbcb1
commit
15821c1117
4 changed files with 22 additions and 1 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
10
zsh/funcs/gopls
Normal file
10
zsh/funcs/gopls
Normal 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
|
Loading…
Add table
Reference in a new issue