https://github.com/bradsec/dotfiles
Personal dot configuration files
https://github.com/bradsec/dotfiles
Last synced: 3 days ago
JSON representation
Personal dot configuration files
- Host: GitHub
- URL: https://github.com/bradsec/dotfiles
- Owner: bradsec
- Created: 2026-05-09T06:19:30.000Z (26 days ago)
- Default Branch: main
- Last Pushed: 2026-05-09T06:29:11.000Z (26 days ago)
- Last Synced: 2026-05-09T08:32:34.147Z (26 days ago)
- Language: Shell
- Size: 9.77 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
Personal dot configuration files
## Shell Profiles
Similar prompt configuration and colours for both bash and zsh. ZSH profile best used with oh-my-zsh and plugins.
```terminal
┌──(user@pcname)-[/path]
└─$
```
ZSH
[.zshrc](.zshrc)
BASH PROFILE
[.bashrc](.bashrc)
```terminal
bash -c '
[ -f ~/.zshrc ] && cp ~/.zshrc ~/.zshrc.bak
[ -f ~/.bashrc ] && cp ~/.bashrc ~/.bashrc.bak
curl -fsSL https://raw.githubusercontent.com/bradsec/dotfiles/main/.zshrc -o ~/.zshrc &&
curl -fsSL https://raw.githubusercontent.com/bradsec/dotfiles/main/.bashrc -o ~/.bashrc
'
```