This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #============================================================================= | |
| # 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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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> |