1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-04-26 01:13:23 -07:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Connor Olding 7703d77332 add elif keyword 2019-07-13 08:30:14 -07:00
Connor Olding 00c057a1f1 set pager 2019-07-13 08:29:56 -07:00
Connor Olding 30d4fe57cd remove some stuff that does more harm than good 2019-07-13 08:29:56 -07:00
2 changed files with 3 additions and 7 deletions

View File

@ -72,13 +72,8 @@ 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 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 EDITOR=vim
export PAGER=less
export VST_SDK_DIR="$HOME/src/vstsdk2.4"
export LADSPA_PATH="/usr/lib/ladspa"
export NQDIR="$HOME/play"

View File

@ -3,3 +3,4 @@ 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