Add initial emacs and zshrc packages.
This commit is contained in:
parent
1698296d8d
commit
ccea64cca2
2 changed files with 269 additions and 0 deletions
26
zshrc/.zshrc
Normal file
26
zshrc/.zshrc
Normal file
|
@ -0,0 +1,26 @@
|
|||
export CLICOLOR=1
|
||||
|
||||
# zsh syntax highlighting
|
||||
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||
|
||||
# hestia clang setup
|
||||
export LLVM_PATH=/opt/homebrew/opt/llvm
|
||||
export PATH=$LLVM_PATH/bin:$PATH
|
||||
export LDFLAGS="-L$LLVM_PATH/lib/c++ -Wl,-rpath,$LLVM_PATH/lib/c++":$LDFLAGS
|
||||
export CPPFLAGS=-I$LLVM_PATH/include:$CPPFLAGS
|
||||
export CC=$LLVM_PATH/bin/clang
|
||||
export CXX=$LLVM_PATH/bin/clang++
|
||||
|
||||
export PYTHONPATH=$PYTHONPATH:/Users/jgrogan/code/ai4eo/src/src
|
||||
|
||||
|
||||
# Load Angular CLI autocompletion.
|
||||
autoload -Uz compinit
|
||||
compinit
|
||||
source <(ng completion script)
|
||||
|
||||
# Created by `userpath` on 2024-03-15 14:30:10
|
||||
export PATH="$PATH:/Users/jgrogan/.local/bin"
|
||||
|
||||
# Add Qt
|
||||
export PATH=$PATH:/Users/jgrogan/tools/qt_install/bin
|
Loading…
Add table
Add a link
Reference in a new issue