asw helpers and such
This commit is contained in:
parent
cda0bbf053
commit
6d43136113
@ -15,6 +15,10 @@
|
|||||||
(eval-when-compile
|
(eval-when-compile
|
||||||
(require 'use-package))
|
(require 'use-package))
|
||||||
|
|
||||||
|
(use-package all-the-icons
|
||||||
|
:ensure t
|
||||||
|
:if (display-graphic-p))
|
||||||
|
|
||||||
(use-package yasnippet
|
(use-package yasnippet
|
||||||
:ensure t
|
:ensure t
|
||||||
:init
|
:init
|
||||||
@ -28,27 +32,55 @@
|
|||||||
(use-package lsp-mode
|
(use-package lsp-mode
|
||||||
:ensure t
|
:ensure t
|
||||||
:init
|
:init
|
||||||
(setq lsp-keymap-prefix "C-c l")
|
(setq lsp-keymap-prefix "C-c l"
|
||||||
|
lsp-use-plists t)
|
||||||
:hook ((js-mode . lsp-deferred)
|
:hook ((js-mode . lsp-deferred)
|
||||||
(rust-mode . lsp-deferred)
|
(rust-mode . lsp-deferred)
|
||||||
(python-mode . lsp-deferred))
|
(python-mode . lsp-deferred)
|
||||||
|
(swift-mode . lsp-deferred))
|
||||||
:commands (lsp lsp-deferred)
|
:commands (lsp lsp-deferred)
|
||||||
:config
|
:config
|
||||||
(setq lsp-idle-delay 0.500))
|
(setq lsp-idle-delay 0.500))
|
||||||
|
|
||||||
|
;; (use-package lsp-jedi
|
||||||
|
;; :ensure t
|
||||||
|
;; :config
|
||||||
|
;; (with-eval-after-load "lsp-mode"
|
||||||
|
;; (add-to-list 'lsp-disabled-clients 'pyls)
|
||||||
|
;; (add-to-list 'lsp-enabled-clients 'jedi)))
|
||||||
|
;; (use-package lsp-pyright
|
||||||
|
;; :ensure t
|
||||||
|
;; :hook (python-mode . (lambda ()
|
||||||
|
;; (require 'lsp-pyright)
|
||||||
|
;; (lsp-deferred))))
|
||||||
(use-package lsp-python-ms
|
(use-package lsp-python-ms
|
||||||
:ensure t
|
:ensure t
|
||||||
:init (setq lsp-python-ms-auto-install-server t)
|
:init (setq lsp-python-ms-auto-install-server t)
|
||||||
:hook (python-mode . (lambda ()
|
:hook (python-mode . (lambda ()
|
||||||
(require 'lsp-python-ms)
|
(require 'lsp-python-ms)
|
||||||
(lsp-deferred))))
|
(lsp-deferred))))
|
||||||
|
(use-package python-black
|
||||||
|
:ensure t
|
||||||
|
:after python
|
||||||
|
:hook (python-mode . python-black-on-save-mode-enable-dwim))
|
||||||
|
|
||||||
|
(use-package python-isort
|
||||||
|
:ensure t
|
||||||
|
:after python
|
||||||
|
:hook (python-mode . python-isort-on-save-mode))
|
||||||
|
|
||||||
|
(use-package lsp-sourcekit
|
||||||
|
:ensure t
|
||||||
|
:after lsp-mode
|
||||||
|
:config
|
||||||
|
(setq lsp-sourcekit-executable "/usr/local/bin/sourcekit-lsp"))
|
||||||
(use-package lsp-ui
|
(use-package lsp-ui
|
||||||
:ensure t
|
:ensure t
|
||||||
:commands lsp-ui-mode
|
:commands lsp-ui-mode
|
||||||
:config
|
:config
|
||||||
(define-key lsp-ui-mode-map [remap xref-find-definitions] #'lsp-ui-peek-find-definitions)
|
(define-key lsp-ui-mode-map [remap xref-find-definitions] #'lsp-ui-peek-find-definitions)
|
||||||
(define-key lsp-ui-mode-map [remap xref-find-references] #'lsp-ui-peek-find-references)
|
(define-key lsp-ui-mode-map [remap xref-find-references] #'lsp-ui-peek-find-references))
|
||||||
)
|
|
||||||
(use-package company
|
(use-package company
|
||||||
:ensure t
|
:ensure t
|
||||||
:hook (after-init-hook . global-company-mode)
|
:hook (after-init-hook . global-company-mode)
|
||||||
@ -95,6 +127,8 @@
|
|||||||
(define-key helm-multi-swoop-map (kbd "C-r") 'helm-previous-line)
|
(define-key helm-multi-swoop-map (kbd "C-r") 'helm-previous-line)
|
||||||
(define-key helm-multi-swoop-map (kbd "C-s") 'helm-next-line)
|
(define-key helm-multi-swoop-map (kbd "C-s") 'helm-next-line)
|
||||||
(setq helm-swoop-split-window-function 'helm-default-display-buffer)
|
(setq helm-swoop-split-window-function 'helm-default-display-buffer)
|
||||||
|
(setq helm-swoop-pre-input-function
|
||||||
|
(lambda () ""))
|
||||||
)
|
)
|
||||||
|
|
||||||
(use-package projectile
|
(use-package projectile
|
||||||
@ -117,6 +151,16 @@
|
|||||||
(helm-projectile-on)
|
(helm-projectile-on)
|
||||||
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map))
|
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map))
|
||||||
|
|
||||||
|
(use-package markdown-mode
|
||||||
|
:ensure t
|
||||||
|
:commands (markdown-mode gfm-mode)
|
||||||
|
:mode (("README\\.md\\'" . gfm-mode)
|
||||||
|
("\\.md\\'" . markdown-mode)
|
||||||
|
("\\.markdown\\'" . markdown-mode))
|
||||||
|
:init (setq markdown-command "multimarkdown"))
|
||||||
|
(use-package grip-mode
|
||||||
|
:ensure t)
|
||||||
|
|
||||||
(use-package org
|
(use-package org
|
||||||
:ensure t
|
:ensure t
|
||||||
:bind(("C-c l" . org-store-link)
|
:bind(("C-c l" . org-store-link)
|
||||||
@ -267,18 +311,23 @@
|
|||||||
;; Your init file should contain only one such instance.
|
;; Your init file should contain only one such instance.
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
'(flycheck-checker-error-threshold 1000)
|
'(flycheck-checker-error-threshold 1000)
|
||||||
|
'(lsp-ui-doc-max-height 13)
|
||||||
|
'(lsp-ui-doc-show-with-cursor nil)
|
||||||
|
'(lsp-ui-doc-show-with-mouse nil)
|
||||||
|
'(lsp-ui-doc-use-webkit nil)
|
||||||
'(package-selected-packages
|
'(package-selected-packages
|
||||||
'(helm-swoop diff-hl diff-hl-mode crux ace-window lsp-python-ms company-mode lsp-pyright django-snippets company helm-lsp company-lsp pyvenv json-snatcher package-lint helm-slime slime slime-company slime-repl-ansi-color helm-projectile web-mode py-autopep8 lsp-ui uniquify lsp-helm lsp-company yaml-mode use-package toml-mode rust-mode rainbow-delimiters projectile powerline multiple-cursors material-theme magit lsp-mode json-mode jinja2-mode gnu-elpa-keyring-update flycheck company-terraform))
|
'(lsp-sourcekit swift-mode python-isort helm-rg python-black lsp-python-ms all-the-icons lsp-treemacs grip-mode helm-swoop diff-hl diff-hl-mode crux ace-window company-mode django-snippets company helm-lsp company-lsp pyvenv json-snatcher package-lint helm-slime slime slime-company slime-repl-ansi-color helm-projectile web-mode py-autopep8 lsp-ui uniquify lsp-helm lsp-company yaml-mode use-package toml-mode rust-mode rainbow-delimiters projectile powerline multiple-cursors material-theme magit lsp-mode json-mode jinja2-mode gnu-elpa-keyring-update flycheck company-terraform))
|
||||||
|
'(python-isort-arguments '("--stdout" "--atomic" "-"))
|
||||||
'(yas-global-mode t))
|
'(yas-global-mode t))
|
||||||
(custom-set-faces
|
(custom-set-faces
|
||||||
;; custom-set-faces was added by Custom.
|
;; custom-set-faces was added by Custom.
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
;; Your init file should contain only one such instance.
|
;; Your init file should contain only one such instance.
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
'(company-scrollbar-bg ((t (:background "#3ad84d6d56b8"))))
|
|
||||||
'(company-scrollbar-fg ((t (:background "#307f3fcf4778"))))
|
|
||||||
'(company-tooltip ((t (:inherit default :background "#2a4937a43e51"))))
|
'(company-tooltip ((t (:inherit default :background "#2a4937a43e51"))))
|
||||||
'(company-tooltip-common ((t (:inherit font-lock-constant-face))))
|
'(company-tooltip-common ((t (:inherit font-lock-constant-face))))
|
||||||
|
'(company-tooltip-scrollbar-thumb ((t (:background "#307f3fcf4778"))))
|
||||||
|
'(company-tooltip-scrollbar-track ((t (:background "#3ad84d6d56b8"))))
|
||||||
'(company-tooltip-selection ((t (:inherit font-lock-function-name-face)))))
|
'(company-tooltip-selection ((t (:inherit font-lock-function-name-face)))))
|
||||||
(put 'upcase-region 'disabled nil)
|
(put 'upcase-region 'disabled nil)
|
||||||
(put 'downcase-region 'disabled nil)
|
(put 'downcase-region 'disabled nil)
|
||||||
|
32
zshrc
32
zshrc
@ -113,7 +113,37 @@ eval "$(pyenv init -)"
|
|||||||
eval "$(pyenv virtualenv-init -)"
|
eval "$(pyenv virtualenv-init -)"
|
||||||
source <(kubectl completion zsh)
|
source <(kubectl completion zsh)
|
||||||
|
|
||||||
if [[ $(grep Microsoft /proc/version) ]]; then
|
if [[ $(grep -i microsoft /proc/version) ]]; then
|
||||||
|
echo "running in ms mode"
|
||||||
export DISPLAY=$(cat /etc/resolv.conf | grep nameserver | awk '{print $2}'):0
|
export DISPLAY=$(cat /etc/resolv.conf | grep nameserver | awk '{print $2}'):0
|
||||||
cd ~
|
cd ~
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
export AWS_DEFAULT_REGION=us-east-1
|
||||||
|
|
||||||
|
aws-docker-login() {
|
||||||
|
echo 'Logging into Docker...'
|
||||||
|
aws ecr get-login-password | docker login --username AWS --password-stdin 095258169967.dkr.ecr.us-east-1.amazonaws.com
|
||||||
|
}
|
||||||
|
|
||||||
|
aws-get-codeartifact() {
|
||||||
|
echo 'Setting CODEARTIFACT_TOKEN...'
|
||||||
|
export CODEARTIFACT_TOKEN=$(aws codeartifact get-authorization-token --domain drivewyze --domain-owner 095258169967 --query authorizationToken --output text)
|
||||||
|
echo 'Done'
|
||||||
|
}
|
||||||
|
|
||||||
|
aws-login() {
|
||||||
|
# Modify the line below based on your needs
|
||||||
|
# aws-azure-login sometimes will prompt for the password every time which is annoying
|
||||||
|
# so this get-caller-identity is a way to test and only prompt for login when required
|
||||||
|
IDENT=$(aws sts get-caller-identity 2> /dev/null)
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
aws-azure-login --no-prompt
|
||||||
|
else
|
||||||
|
echo "already logged in to aws as" $(echo $IDENT | jq -r .Arn)
|
||||||
|
fi
|
||||||
|
aws-docker-login
|
||||||
|
aws-get-codeartifact
|
||||||
|
}
|
||||||
|
|
||||||
|
aws-login
|
||||||
|
Loading…
x
Reference in New Issue
Block a user