From f291436b4562c2d8222516753fd3429dbfd5f625 Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Tue, 22 Jun 2021 18:39:12 -0700 Subject: [PATCH] updates --- .gitignore | 3 +++ dotfiles/bash/bash_profile | 23 +++++++++++++++++------ dotfiles/emacs.d/elisp/package.el | 2 ++ dotfiles/emacs.d/init.el | 6 ++++++ 4 files changed, 28 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 454ac6e..c4a400d 100644 --- a/.gitignore +++ b/.gitignore @@ -64,3 +64,6 @@ dotfiles/config/GitExtensions # Jedi Python Environment dotfiles/emacs.d/.python-environments/* + +# Emacs transient cache files +dotfiles/emacs.d/transient/* diff --git a/dotfiles/bash/bash_profile b/dotfiles/bash/bash_profile index 393190e..1fe98a0 100644 --- a/dotfiles/bash/bash_profile +++ b/dotfiles/bash/bash_profile @@ -2,9 +2,20 @@ if [[ -f ~/.bashrc ]]; then source ~/.bashrc fi -# Enable homebrew openssl support -export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/opt/openssl/lib/ -export PATH="/usr/local/opt/openjdk/bin:$PATH" -export PATH="/usr/local/opt/llvm/bin:$PATH" -export PATH="/usr/local/opt/qt/bin:$PATH" -export PATH="/usr/local/opt/tcl-tk/bin:$PATH" +if [[ "$OSTYPE" == "darwin"* ]]; then + # Enable homebrew openssl support + export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/opt/openssl/lib/ + export PATH="/usr/local/opt/openjdk/bin:$PATH" + export PATH="/usr/local/opt/llvm/bin:$PATH" + export PATH="/usr/local/opt/qt/bin:$PATH" + export PATH="/usr/local/opt/tcl-tk/bin:$PATH" +fi + +if [[ "$OSTYPE" == "linux-gnu" ]]; then + export PATH="$HOME/.pyenv/bin:$PATH" +fi + +# Add RVM to PATH for scripting. Make sure this is the last PATH variable change. +export PATH="$PATH:$HOME/.rvm/bin" + +[ -f "$HOME/.ghcup/env" ] && source "$HOME/.ghcup/env" # ghcup-env \ No newline at end of file diff --git a/dotfiles/emacs.d/elisp/package.el b/dotfiles/emacs.d/elisp/package.el index cad70f0..41475d6 100644 --- a/dotfiles/emacs.d/elisp/package.el +++ b/dotfiles/emacs.d/elisp/package.el @@ -81,6 +81,8 @@ material-theme oceanic-theme arjen-grey-theme + dired-sidebar + vscode-icon ;;;;; ;; Project Interaction/Search/Syntax diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index 4a54480..7c457e2 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -69,6 +69,12 @@ There are two things you can do about this warning: (setq inhibit-startup-screen t) ;;-------------------------------------------------------------------------------------- +;; UI +;;-------------------------------------------------------------------------------------- + +(load-library "ui") + +;;-------------------------------------------------------------------------------------- ;; Quit Beeping ;;--------------------------------------------------------------------------------------