diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-15T22·13+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-17T10·56+0000 |
commit | dd9db4e318f309afa839e034ff0d152d4aed34f9 (patch) | |
tree | b7383a2a4f5b456e2feb3c40bb0e10539d92f4c1 /configs/shared/.profile | |
parent | 6e70cb527cd6edc9fdee087930d8a9bfef705abd (diff) |
Prefer direnv to manage ORG_DIRECTORY
Instead of keeping this in my ~/.profile, I'm going to define it in .envrc. What I still don't know is how functions like `getenv` are supposed to interact with direnv. I suppose maybe they aren't? Right now, when I call `(getenv "DOTFILES")` from Emacs, it's `nil`, which I understand. Hopefully the more I use direnv, the more reasonable expectations I'll have.
Diffstat (limited to 'configs/shared/.profile')
-rw-r--r-- | configs/shared/.profile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configs/shared/.profile b/configs/shared/.profile index 2f201c37d641..57f87751b8df 100644 --- a/configs/shared/.profile +++ b/configs/shared/.profile @@ -31,14 +31,13 @@ export RUST_SRC_PATH # TODO: Decide if clipmenu is compatible with EXWM. # Ensure clipmenu uses rofi instead of dmenu +# TODO: Remove this after fully supporting Emacs client for clipmenu. export CM_LAUNCHER=rofi # Application configuration export FZF_DEFAULT_COMMAND='fd --hidden --follow --exclude ".git"' export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND" -export ORG_DIRECTORY="$HOME/Dropbox/org" - # Prevent compton from fading to the lock screen. This also prevents the white # overlay that compton was causing to appear. Still unsure why that was # happening. |