Compare commits
7 Commits
cd7de3db22
...
0e2bfb07b3
Author | SHA1 | Date | |
---|---|---|---|
|
0e2bfb07b3 | ||
|
f886bfef05 | ||
|
87dc8b8cac | ||
|
7b8d603425 | ||
|
17bc1945e9 | ||
|
368caf9bae | ||
|
918b9358df |
@ -63,9 +63,20 @@
|
||||
|
||||
;; Consult adds a bunch of completing-read based utilities
|
||||
(use-package consult
|
||||
:commands (consult-xref)
|
||||
:init
|
||||
(setq xref-show-xrefs-function #'consult-xref
|
||||
xref-show-definitions-function #'consult-xref)
|
||||
:custom
|
||||
(consult-project-root-function #'projectile-project-root)
|
||||
:general
|
||||
([remap switch-to-buffer] #'consult-buffer)
|
||||
([remap imenu] #'consult-imenu)
|
||||
("C-c p" #'consult-yank))
|
||||
|
||||
(use-package consult-flycheck
|
||||
:after flycheck
|
||||
:general
|
||||
(flycheck-command-map "!" #'consult-flycheck))
|
||||
|
||||
(provide 'init-completion)
|
||||
|
@ -79,4 +79,10 @@
|
||||
:general
|
||||
("C-c o" #'olivetti-mode))
|
||||
|
||||
;; Multiple cursors
|
||||
(use-package evil-multiedit
|
||||
:defer 2
|
||||
:config
|
||||
(evil-multiedit-default-keybinds))
|
||||
|
||||
(provide 'init-editing)
|
||||
|
@ -18,6 +18,12 @@
|
||||
"|"
|
||||
"DONE(d)"
|
||||
"CANCELLED(c)")))
|
||||
(org-capture-templates `(("l" "Lola task" entry
|
||||
(file+headline ,(expand-file-name "~/org/todo.org") "Lola")
|
||||
"* TODO %i%?")
|
||||
("p" "Personal task" entry
|
||||
(file+headline ,(expand-file-name "~/org/todo.org") "Personal")
|
||||
"* TODO %i%?")))
|
||||
(org-return-follows-link t)
|
||||
(org-ellipsis " ▼")
|
||||
(org-src-fontify-natively t)
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
;; Project management
|
||||
(use-package projectile
|
||||
:commands (projectile-project-root)
|
||||
:config
|
||||
(projectile-mode 1)
|
||||
(leader-def-key "p" '(projectile-command-map :which-key "projectile"))
|
||||
|
@ -53,4 +53,12 @@
|
||||
:general
|
||||
(python-mode-map "C-c C-d" #'lsp-describe-thing-at-point))
|
||||
|
||||
;; isort to sort Python imports
|
||||
(use-package py-isort
|
||||
:commands (py-isort-buffer py-isort-region)
|
||||
:config
|
||||
(setq py-isort-options '("-m=3"))
|
||||
:general
|
||||
(python-mode-map "C-c C-i" #'py-isort-buffer))
|
||||
|
||||
(provide 'init-python)
|
||||
|
@ -186,6 +186,7 @@
|
||||
:general
|
||||
(leader-map "\"" #'run-command)
|
||||
(run-command-term-minor-mode-map [remap recompile] #'run-command-term-recompile)
|
||||
(normal run-command-term-minor-mode-map "gr" #'run-command-term-recompile)
|
||||
:custom
|
||||
(run-command-run-method 'async-shell)
|
||||
(run-command-recipes '(run-command-recipe-terraform
|
||||
|
@ -43,7 +43,8 @@
|
||||
"PIPENV_VERBOSITY" "PIPENV_DONT_LOAD_ENV"
|
||||
"PIPENV_MAX_DEPTH" "PYENV_ROOT" "KOPS_STATE_STORE"
|
||||
"PLAID_CLIENT_ID" "PLAID_SECRET" "PLAID_ENVIRONMENT"))
|
||||
(exec-path-from-shell-check-startup-files nil))
|
||||
(exec-path-from-shell-check-startup-files nil)
|
||||
(exec-path-from-shell-arguments '("-l")))
|
||||
|
||||
|
||||
;; Don't use this file as the custom-file
|
||||
|
26
zsh/.zshenv
Normal file
26
zsh/.zshenv
Normal file
@ -0,0 +1,26 @@
|
||||
if [ -d ~/lola ];
|
||||
then
|
||||
export LOLA_HOME=~/lola/lola-server
|
||||
export MODELS_HOME=~/lola/models
|
||||
export LOLA_TRAVEL_SERVICE_HOME=~/lola/lola-travel-service
|
||||
fi
|
||||
|
||||
export LEDGER_FILE="$HOME/journal.ledger"
|
||||
export PATH="$HOME/bin/":"$HOME/.local/bin":"$HOME/.gem/ruby/2.6.0/bin":"$HOME/.gem/ruby/2.5.0/bin":"$HOME/go/bin":"/opt/local/bin":"$PATH"
|
||||
|
||||
EDITOR="$(which emacsclient)"
|
||||
export EDITOR
|
||||
|
||||
export PATH="$HOME/.cargo/bin:$PATH"
|
||||
|
||||
export NVM_DIR="$HOME/.nvm"
|
||||
|
||||
export WORKON_HOME="$HOME/.local/share/virtualenvs"
|
||||
|
||||
GPG_TTY=$(tty)
|
||||
export GPG_TTY
|
||||
|
||||
if [ -d /Applications/Postgres.app ];
|
||||
then
|
||||
export PATH=/Applications/Postgres.app/Contents/Versions/latest/bin:"$PATH"
|
||||
fi
|
Loading…
Reference in New Issue
Block a user