Browse Source

updates

master
Taylor Bockman 3 years ago
parent
commit
f291436b45
  1. 3
      .gitignore
  2. 23
      dotfiles/bash/bash_profile
  3. 2
      dotfiles/emacs.d/elisp/package.el
  4. 6
      dotfiles/emacs.d/init.el

3
.gitignore vendored

@ -64,3 +64,6 @@ dotfiles/config/GitExtensions
# Jedi Python Environment
dotfiles/emacs.d/.python-environments/*
# Emacs transient cache files
dotfiles/emacs.d/transient/*

23
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

2
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

6
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
;;--------------------------------------------------------------------------------------

Loading…
Cancel
Save