Compare commits

..

2 Commits

Author SHA1 Message Date
Jeremy Dormitzer
2ed07788c7 Add ~/info to INFOPATH 2022-03-30 10:13:42 -04:00
Jeremy Dormitzer
61cc0700b8 Put undo-tree history files in shared dir 2022-03-30 10:13:21 -04:00
3 changed files with 8 additions and 4 deletions

View File

@ -5,6 +5,9 @@
:demand t :demand t
:config :config
(global-undo-tree-mode) (global-undo-tree-mode)
:bind ("C-c C-r" . undo-tree-visualize)) :bind ("C-c C-r" . undo-tree-visualize)
:custom
(undo-tree-history-directory-alist
`(("." . ,(expand-file-name (concat user-emacs-directory "undo-history"))))))
(provide 'init-undo) (provide 'init-undo)

View File

@ -48,9 +48,8 @@
:hook (after-init . exec-path-from-shell-initialize) :hook (after-init . exec-path-from-shell-initialize)
:custom :custom
(exec-path-from-shell-variables (exec-path-from-shell-variables
'("PATH" "MANPATH" "LEDGER_FILE" "LOLA_HOME" '("PATH" "MANPATH" "INFOPATH" "LEDGER_FILE"
"MODELS_HOME" "LOLA_TRAVEL_SERVICE_HOME" "WORKON_HOME" "WORKON_HOME" "PIPENV_VERBOSITY" "PIPENV_DONT_LOAD_ENV"
"PIPENV_VERBOSITY" "PIPENV_DONT_LOAD_ENV"
"PIPENV_MAX_DEPTH" "PYENV_ROOT" "KOPS_STATE_STORE" "PIPENV_MAX_DEPTH" "PYENV_ROOT" "KOPS_STATE_STORE"
"PLAID_CLIENT_ID" "PLAID_SECRET" "PLAID_ENVIRONMENT")) "PLAID_CLIENT_ID" "PLAID_SECRET" "PLAID_ENVIRONMENT"))
(exec-path-from-shell-check-startup-files nil) (exec-path-from-shell-check-startup-files nil)

View File

@ -1,6 +1,8 @@
typeset -U path typeset -U path
path=(~/bin ~/.local/bin ~/.gem/ruby/2.6.0/bin ~/go/bin /opt/local/bin ~/.cargo/bin /usr/local/opt/make/libexec/gnubin $path) path=(~/bin ~/.local/bin ~/.gem/ruby/2.6.0/bin ~/go/bin /opt/local/bin ~/.cargo/bin /usr/local/opt/make/libexec/gnubin $path)
export INFOPATH="$HOME/info:/opt/homebrew/share/info:"
export LEDGER_FILE="$HOME/journal.ledger" export LEDGER_FILE="$HOME/journal.ledger"
EDITOR="$(which emacsclient)" EDITOR="$(which emacsclient)"