https://github.com/dmitriz/dotfiles
My various configuration dotfiles
https://github.com/dmitriz/dotfiles
Last synced: about 1 year ago
JSON representation
My various configuration dotfiles
- Host: GitHub
- URL: https://github.com/dmitriz/dotfiles
- Owner: dmitriz
- Created: 2015-11-25T16:08:50.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-12-08T21:09:00.000Z (over 1 year ago)
- Last Synced: 2025-02-10T06:30:49.682Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Git
## global .gitignore
https://help.github.com/articles/ignoring-files/
```sh
git config --global core.excludesfile ~/.gitignore_global
```
# Node
## Fixing npm permissions
To avoid `sudo npm` and the likes:
https://docs.npmjs.com/getting-started/fixing-npm-permissions
https://github.com/sindresorhus/guides/blob/master/npm-global-without-sudo.md
## Force npm to use cache on slow connection
Add the option
```sh
--cache-min 9999999
```