Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danieldelcore/dotfiles
ಠ_ಠ Dan's dotfiles!
https://github.com/danieldelcore/dotfiles
config dotfile dotfiles
Last synced: 3 months ago
JSON representation
ಠ_ಠ Dan's dotfiles!
- Host: GitHub
- URL: https://github.com/danieldelcore/dotfiles
- Owner: danieldelcore
- Created: 2017-11-29T23:29:00.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-29T01:57:54.000Z (5 months ago)
- Last Synced: 2024-10-12T23:18:26.076Z (3 months ago)
- Topics: config, dotfile, dotfiles
- Language: Shell
- Homepage:
- Size: 42 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles ಠ_ಠ
## Installation 📦
Clone this repo to a hidden `/.dotfile` directory in your home directory:`cd ~ && git clone [email protected]:danieldelcore/dotfiles.git ~/.dotfiles`
Install brew:
`/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"`
Run setup scripts:
- Run all installation scripts: `source ~/.dotfiles/install-scripts/install-all.sh`
_-or-_
- directories: `source ~/.dotfiles/install-scripts/directories.sh`
- brew: `source ~/.dotfiles/install-scripts/brew.sh`
- node: `source ~/.dotfiles/install-scripts/node.sh`
- zsh: `source ~/.dotfiles/install-scripts/oh-my-zsh.sh`
- osx: `source ~/.dotfiles/install-scripts/osx.sh`
- symlinks: `source ~/.dotfiles/install-scripts/symlinks.sh`## ZSH Themes 🍱
This repo installs three themes by default. Theme configuration is available in `.zshrc`.To use the base theme 'ddc-prompt': `ZSH_THEME="ddc-prompt"`
To use the [Spaceship](https://github.com/denysdovhan/spaceship-prompt): `ZSH_THEME="spaceship"`
To use [Pure prompt](https://github.com/sindresorhus/pure):
```bash
autoload -U promptinit; promptinit
prompt pureZSH_THEME="" #to disable oh-my-zsh themes.
```