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
############################### | |
### TODO shortcuts | |
export TD_PATH="" | |
alias td="rg -n -g 'TODO.md' '\- \[\]' $TD_PATH | |
############################### |
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
## | |
# App Name - also used for conf file naming | |
## | |
app_name=$1 | |
| |
if [ -z "$1" ];then | |
echo "Must provide app_name!" | |
exit 1 | |
fi | |
|
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
-- forked from https://github.com/nvim-lua/kickstart.nvim | |
-- TODO | |
-- system clipboard copy config (unnamedplus?) | |
-- Install packer | |
local install_path = vim.fn.stdpath 'data' .. '/site/pack/packer/start/packer.nvim' | |
local is_bootstrap = false | |
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then | |
is_bootstrap = true |
OlderNewer