Skip to content

Instantly share code, notes, and snippets.

View tsteinholz's full-sized avatar

тнσмαѕ ѕтєιинσℓz tsteinholz

View GitHub Profile
@tsteinholz
tsteinholz / init.toml
Created March 14, 2020 18:59
SpaceVim Configuration
#=============================================================================
# init.toml --- Thomas Steinholz's SpaceVim Configuration
#=============================================================================
# All SpaceVim option below [option] section
[options]
colorscheme = "onedark"
colorscheme_bg = "dark"
enable_guicolors = false
#guifont = "DroidSansMono Nerd Font:h12"
mkdir ~/.scripts
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
git clone https://gist.github.com/tsteinholz/b7b7647b03ac817400b1008edbe37eeb ~/.scripts
ln -s ~/.scripts/vim.rc ~/.vimrc
" vim.rc by Thomas Steinholz
" ------------------------------------------------------------------------------
" ViM!
" <Leader> : Space Key
" F2 : Toggle Paste Mode
" F3 : Undo Tree
" F4 : Toggle Spell Check
" F8 : New Tab
" F9 : Previous Tab
" F10 : Next Tab
@tsteinholz
tsteinholz / main.cpp
Created April 20, 2016 12:28
A good starting point for Allegro 5 based games.
#include <allegro5/allegro.h>
#include <allegro5/allegro_audio.h>
#include <allegro5/allegro_acodec.h>
#include <allegro5/allegro_image.h>
#include <allegro5/allegro_primitives.h>
#include <allegro5/allegro_font.h>
#include <allegro5/allegro_ttf.h>
#include <cstdio>