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
| """"""""""""""""""""""""""""""""""""" | |
| " Allan MacGregor Vimrc configuration | |
| """"""""""""""""""""""""""""""""""""" | |
| "Mouse controller | |
| :set mouse=a | |
| set nocompatible | |
| syntax on | |
| set nowrap | |
| set encoding=utf8 |
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
| stagfoo/theme-happyaku | |
| joehillen/to-fish |
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
| 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! |
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
| cd ~/; | |
| pacman -S --needed git base-devel | |
| git clone https://aur.archlinux.org/yay.git .yay; | |
| cd .yay; | |
| makepkg -si; |
OlderNewer