https://github.com/moimikey/dotfiles
My dot files, ie, my one dotfile with an obscene amount of aliases that I've memorized...
https://github.com/moimikey/dotfiles
bash config dotfiles git npm shell zsh zshell zshrc
Last synced: 3 months ago
JSON representation
My dot files, ie, my one dotfile with an obscene amount of aliases that I've memorized...
- Host: GitHub
- URL: https://github.com/moimikey/dotfiles
- Owner: moimikey
- Created: 2012-06-14T01:43:36.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2017-02-24T04:10:31.000Z (almost 9 years ago)
- Last Synced: 2025-03-10T22:59:22.926Z (11 months ago)
- Topics: bash, config, dotfiles, git, npm, shell, zsh, zshell, zshrc
- Language: Shell
- Homepage:
- Size: 61.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# .dotfiles
# Install
```
npm --global config set save-prefix ""
npm --global config set progress false
npm --global config set init.version "0.1.0"
npm --global config set init.license "MIT"
npm --global config set init.author.email "mshertzberg@gmail.com"
npm --global config set init.author.name "Michael Scott Hertzberg"
npm --global config set init.author.url "https://hertzber.gs"
npm --global config set editor "vim"
git config --global user.name "Michael Scott Hertzberg"
git config --global user.email "mshertzberg@gmail.com"
git config --global --add remote.origin.fetch "+refs/pull/*/head:refs/remotes/origin/pr/*"
git config --global pager.diff "diff-so-fancy | less --tabs=1,5 -RFX"
git config --global pager.show "diff-so-fancy | less --tabs=1,5 -RFX"
git config --global commit.gpgsign true
```
# Autocompletion
```
git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
plugins+=(zsh-autosuggestions)
```
# Optional
```
curl https://sh.rustup.rs -sSf | sh
```