todo2(a.k.a. todo or die) - A better todo! macro inspired from searls/todo_or_die
This crate provides a better todo! macro, which allows you to specify the deadline and the condition when the code should be implemented.
| https://drive.proton.me/urls/YR8MAYRYKC#1jPhAmg2AOl5 |
todo2(a.k.a. todo or die) - A better todo! macro inspired from searls/todo_or_die
This crate provides a better todo! macro, which allows you to specify the deadline and the condition when the code should be implemented.
| --[[ | |
| THESE ARE EXAMPLE CONFIGS FEEL FREE TO CHANGE TO WHATEVER YOU WANT | |
| `lvim` is the global options object | |
| ]] | |
| -- vim options | |
| vim.opt.shiftwidth = 2 | |
| vim.opt.tabstop = 2 | |
| vim.opt.relativenumber = true |
I hereby claim:
To claim this, I am signing this object:
| # | |
| # /etc/pacman.conf | |
| # | |
| # See the pacman.conf(5) manpage for option and repository directives | |
| # | |
| # GENERAL OPTIONS | |
| # | |
| [options] | |
| # The following paths are commented out with their default values listed. |
| use lazy_static::lazy_static; | |
| lazy_static! { | |
| /// A static lookup table of all odd numbers in the u16 range. | |
| pub static ref ODDS: [u16; 32768] = [ | |
| 1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77, | |
| 79,81,83,85,87,89,91,93,95,97,99,101,103,105,107,109,111,113,115,117,119,121,123,125,127,129,131,133,135,137,139, | |
| 141,143,145,147,149,151,153,155,157,159,161,163,165,167,169,171,173,175,177,179,181,183,185,187,189,191,193,195, | |
| 197,199,201,203,205,207,209,211,213,215,217,219,221,223,225,227,229,231,233,235,237,239,241,243,245,247,249,251, | |
| 253,255,257,259,261,263,265,267,269,271,273,275,277,279,281,283,285,287,289,291,293,295,297,299,301,303,305,307, |
| use lazy_static::lazy_static; | |
| lazy_static! { | |
| /// A static lookup table of all odd numbers in the u8 range. | |
| pub static ref ODDS: [u8; 128] = [ | |
| 1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65, | |
| 67,69,71,73,75,77,79,81,83,85,87,89,91,93,95,97,99,101,103,105,107,109,111,113,115,117,119, | |
| 121,123,125,127,129,131,133,135,137,139,141,143,145,147,149,151,153,155,157,159,161,163, | |
| 165,167,169,171,173,175,177,179,181,183,185,187,189,191,193,195,197,199,201,203,205,207, | |
| 209,211,213,215,217,219,221,223,225,227,229,231,233,235,237,239,241,243,245,247,249,251,253,255 |
| #!/bin/sh | |
| userresources=$HOME/.Xresources | |
| usermodmap=$HOME/.Xmodmap | |
| sysresources=/etc/X11/xinit/.Xresources | |
| sysmodmap=/etc/X11/xinit/.Xmodmap | |
| # merge in defaults and keymaps | |
| if [ -f $sysresources ]; then |
| # Static information about the filesystems. | |
| # See fstab(5) for details. | |
| # <file system> <dir> <type> <options> <dump> <pass> | |
| # /dev/nvme0n1p3 | |
| UUID=1091bb4a-1146-419b-9300-45bc6ff3c7af / ext4 rw,relatime 0 1 | |
| # /dev/nvme0n1p1 | |
| UUID=2F91-7540 /boot/EFI vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 2 |