Skip to content

Instantly share code, notes, and snippets.

View lambda-mike's full-sized avatar

Michał Grygierzec lambda-mike

View GitHub Profile
@lambda-mike
lambda-mike / init.vim
Created May 11, 2020 10:16
My neoVim configuration
" Basic config
set autoread " Automatically reload modified buffer
set autowriteall " Automatically write files when some commands occur
set backupcopy=yes " Fix Hot Module Reloading for parcel js
set colorcolumn=80 " Colour column 80
set cursorcolumn " Highlight the column currently under cursor
set cursorline " Highlight the line currently under cursor
set expandtab " Use spaces instead of tabs
set foldlevel=20 " Folds with a higher level will be closed
set foldmethod=indent
@lambda-mike
lambda-mike / space_invaders.rkt
Created May 11, 2020 10:15
Space invaders game as a project from Edx course
;; Space Invaders
;;
;; In order to run in DrRacket:
;; Choose Language... -> Teaching Languages -> Intermediate Student
;; Click Run
;; type: (main G0)
(require 2htdp/universe)
(require 2htdp/image)