Skip to content

Instantly share code, notes, and snippets.

View stagfoo's full-sized avatar
🎨
Do I Dream of Electric Bugs

Alex King stagfoo

🎨
Do I Dream of Electric Bugs
View GitHub Profile
@stagfoo
stagfoo / IDE.vim
Created November 25, 2019 00:02
IDE.vim
"""""""""""""""""""""""""""""""""""""
" Allan MacGregor Vimrc configuration
"""""""""""""""""""""""""""""""""""""
"Mouse controller
:set mouse=a
set nocompatible
syntax on
set nowrap
set encoding=utf8
@stagfoo
stagfoo / fish.config
Created August 7, 2020 22:47
2020 - Desktop rice
stagfoo/theme-happyaku
joehillen/to-fish
@stagfoo
stagfoo / jobcan.js
Last active November 20, 2020 08:55
jobcan.js
function sleep (time) {
return new Promise((resolve) => setTimeout(resolve, time));
}
async function enterTime() {
// sleep time expects milliseconds
let startWork = "0900"
let lunchStart = "1200"
let lunchFinish = "1300"
let finishWork = "1800"
// Usage!
@stagfoo
stagfoo / install-yay.sh
Last active January 6, 2022 03:29
install yay
cd ~/;
pacman -S --needed git base-devel
git clone https://aur.archlinux.org/yay.git .yay;
cd .yay;
makepkg -si;