diff options
author | jakobst1n <jakob.stendahl@outlook.com> | 2024-02-12 18:00:19 +0100 |
---|---|---|
committer | jakobst1n <jakob.stendahl@outlook.com> | 2024-02-12 18:00:19 +0100 |
commit | bf5df2e802df4a46378855fd7ef0b0a4979d8c27 (patch) | |
tree | 585452940d94790a10dcce5cd94ffe5d3d1c9b03 /Common/bashrc.m4 | |
parent | da4f994bec2f9a0927195c7bbc84d44f4b8384fb (diff) | |
download | dotfiles-bf5df2e802df4a46378855fd7ef0b0a4979d8c27.tar.gz dotfiles-bf5df2e802df4a46378855fd7ef0b0a4979d8c27.zip |
Improve some config stuff
Diffstat (limited to 'Common/bashrc.m4')
-rw-r--r-- | Common/bashrc.m4 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Common/bashrc.m4 b/Common/bashrc.m4 index 6f64138..2340348 100644 --- a/Common/bashrc.m4 +++ b/Common/bashrc.m4 @@ -12,9 +12,9 @@ esac # Check if env setup file exists if [ ! -f ~/.dotfiles_env ]; then echo "DEFAULT_USER=$USER" >> ~/.zsh_env_setup - echo "export GIT_EDITOR=\"DEFAULT_EDITOR\"" >> ~/.dotfiles_env - echo "export GIT_AUTHOR_NAME=\"GIT_USER\"" >> ~/.dotfiles_env - echo "export GIT_AUTHOR_EMAIL=\"GIT_EMAIL\"" >> ~/.dotfiles_env + echo "export GIT_EDITOR=\"DT_EDITOR\"" >> ~/.dotfiles_env + echo "export GIT_AUTHOR_NAME=\"DT_GIT_USER\"" >> ~/.dotfiles_env + echo "export GIT_AUTHOR_EMAIL=\"DT_GIT_EMAIL\"" >> ~/.dotfiles_env fi # Source env setup file @@ -28,7 +28,7 @@ export LC_ALL=en_US.UTF-8 export LANG=en_US.UTF-8 # Set editor -export EDITOR="DEFAULT_EDITOR" +export EDITOR="DT_EDITOR" # don't put duplicate lines or lines starting with space in the history. # See bash(1) for more options |