Skip to content

Instantly share code, notes, and snippets.

View maciejmotyka's full-sized avatar

Maciej Motyka maciejmotyka

View GitHub Profile
@maciejmotyka
maciejmotyka / Load-Multiple-R-Packages.R
Created December 9, 2019 16:24 — forked from RobertMyles/Load-Multiple-R-Packages.R
Load multiple packages at the same time in R
# library() or require() only load one package at a time
# but...
Packages <- c("dplyr", "ggplot2", "rstan", "readr")
lapply(Packages, library, character.only = TRUE)
# this loads as many as you put in 'Packages'. They need to be installed first, of course.
@maciejmotyka
maciejmotyka / keybindings.txt
Last active April 28, 2019 14:22 — forked from kumpelblase2/keybindings.txt
Vimium Dvorak Mappings
# Insert your preferred key mappings here.
unmapAll
# Basic movement
map d scrollLeft
map h scrollDown
map t scrollUp
map n scrollRight
map ii scrollToTop
map I scrollToBottom