1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-18 17:53:23 -07:00

Compare commits

..

No commits in common. "7703d77332d7af65b93b27595e491cacfd00aa4c" and "d18e4a5f91c5185158dafe6c97997da1ad9da566" have entirely different histories.

2 changed files with 7 additions and 3 deletions

View File

@ -72,8 +72,13 @@ unset LD_LIBRARY_PATH
# Qt is stupid and thinks we're running unity so it hides the menu bar
[[ "$DESKTOP_SESSION" == xfce ]] && export QT_QPA_PLATFORMTHEME=""
export EDITOR=vim
export PAGER=less
export PREFIX="$HOME/opt/local"
export EDITOR='vim'
export CC="$(has clang || has gcc)"
export CXX="$(has clang++ || has g++)"
export CXXFLAGS="$CFLAGS"
export MAKEFLAGS="-j2"
export OMP_NUM_THREADS=4
export VST_SDK_DIR="$HOME/src/vstsdk2.4"
export LADSPA_PATH="/usr/lib/ladspa"
export NQDIR="$HOME/play"

View File

@ -3,4 +3,3 @@ syn keyword cType u8 u16 u32 u64
syn keyword cType s8 s16 s32 s64
syn keyword cType i8 i16 i32 i64
syn keyword cType f32 f64
syn keyword cConditional elif