Keychain refresh environment

This commit is contained in:
Nathan McCarty 2022-12-10 20:03:46 -05:00
parent eb94d3e704
commit 115312616b
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
2 changed files with 8 additions and 1 deletions

View File

@ -104,7 +104,7 @@ The provided default ~config.el~
(after! gcmh (after! gcmh
(setq gcmh-high-cons-threshold (* 64 1024 1024))) (setq gcmh-high-cons-threshold (* 64 1024 1024)))
#+end_src #+end_src
* Appearance and UI * Appearance, UX, and Fixes
** Mixed Pitch Mode ** Mixed Pitch Mode
Use mixed pitch mode in prose writing modes, to make the writing experience a bit more pleasant. Use mixed pitch mode in prose writing modes, to make the writing experience a bit more pleasant.
This tweak applies to: This tweak applies to:
@ -180,6 +180,12 @@ Modify the ~dired-omit-files~ regex to exclude the current working directory (~.
(after! dired (after! dired
(setq dired-omit-files "\\`[.]?#\\|\\`[.]?\\'\\|^\\.DS_Store\\'\\|^\\.project\\(?:ile\\)?\\'\\|^\\.\\(?:svn\\|git\\)\\'\\|^\\.ccls-cache\\'\\|\\(?:\\.js\\)?\\.meta\\'\\|\\.\\(?:elc\\|o\\|pyo\\|swp\\|class\\)\\'")) (setq dired-omit-files "\\`[.]?#\\|\\`[.]?\\'\\|^\\.DS_Store\\'\\|^\\.project\\(?:ile\\)?\\'\\|^\\.\\(?:svn\\|git\\)\\'\\|^\\.ccls-cache\\'\\|\\(?:\\.js\\)?\\.meta\\'\\|\\.\\(?:elc\\|o\\|pyo\\|swp\\|class\\)\\'"))
#+end_src #+end_src
** Setup keychain environment
Load the keychain environment variables into emacs
#+begin_src emacs-lisp
(require 'keychain-environment)
(keychain-refresh-environment)
#+end_src
* Basic Editing * Basic Editing
** Evil Mode ** Evil Mode
Emacs is best vim, fite me Emacs is best vim, fite me

View File

@ -74,3 +74,4 @@
:branch "main")) :branch "main"))
(package! per-buffer-theme) (package! per-buffer-theme)
(package! org-chef) (package! org-chef)
(package! keychain-environment)