I know better than rclone i.e. no .git and no node_module

This commit is contained in:
Daylin Morgan 2023-05-15 14:17:19 -05:00
parent 48db8e0f04
commit 5ec0cf4942
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F
2 changed files with 12 additions and 1 deletions

View file

@ -1,7 +1,15 @@
- .git/**
- .vscode/**
# office lock files
- ~$*
# libre office files
- .~*#
# node
- node_modules/**
# python
- .venv/**
- venv/**
- env/**
+ **

View file

@ -31,8 +31,11 @@ alias urldecode='python3 -c "import sys, urllib.parse as ul; \
alias urlencode='python3 -c "import sys, urllib.parse as ul; \
print (ul.quote_plus(sys.argv[1]))"'
alias rclone='rclone --filter-from ~/.config/rclone/filter-file.txt'
# alias zbench='for i in {1..10}; do /usr/bin/time zsh -lic exit; done'
alias zdot='cd ${ZDOTDIR:-~}'
alias dots='cd ${DOTFILES_DIR:-~/.dotfiles}'
alias today="date +'%Y-%m-%d'"
alias dots-drop='chezmoi forget --interactive $(chezmoi managed -p absolute | fzf)'