Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/steshaw/shelly
🐚 Dotfiles and shell utilities
https://github.com/steshaw/shelly
bash dotfiles emacs homebrew neovim package-system shell spacemacs vim zsh
Last synced: 2 months ago
JSON representation
🐚 Dotfiles and shell utilities
- Host: GitHub
- URL: https://github.com/steshaw/shelly
- Owner: steshaw
- Created: 2010-04-29T00:56:47.000Z (over 14 years ago)
- Default Branch: main
- Last Pushed: 2024-11-04T03:17:53.000Z (3 months ago)
- Last Synced: 2024-11-04T04:20:05.297Z (3 months ago)
- Topics: bash, dotfiles, emacs, homebrew, neovim, package-system, shell, spacemacs, vim, zsh
- Language: Shell
- Homepage:
- Size: 4.17 MB
- Stars: 15
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🐚 Shelly
My [dotfiles](./files/home), [shell scripts](./script), and [packages](./nix).
This is a "note to self". I don't imagine anyone else will want to install
my dotfiles 😁. It could provide some inspiration for your own dotfile
management.## Install dotfiles
1. First, move any existing dotfiles aside. For example, on a fresh machine,
you might need something like:```bash
mkdir dotfiles.bup && mv .profile .bashrc .bash_logout .zshrc dotfiles.bup/
```2. Install prerequisites
You'll need `curl`, `git`, and `stow`. For example, on Ubuntu, issue the
following command:```bash
sudo apt install -y curl git stow
```3. Run the bootstrap script
``` sh-session
bash <(curl -s https://raw.githubusercontent.com/steshaw/shelly/main/script/shelly-bootstrap)
```This downloads this repo and links my dotfiles.
You can stop right here for a minimal setup.
## Install packages (optional)
1. Install [Nix](https://nixos.org/nix)
On NixOS, Nix is already installed. For other systems, follow the
[official installation instructions](https://nixos.org/download.html) or
try those that follow:Linux systems:
```bash
sh <(curl -fsSL https://nixos.org/nix/install) --daemon --yes
```For macOS systems:
You may need to set the umask to the traditional value:
```bash
umask 022
```Install Nix with the following options:
```bash
sh <(curl -L https://nixos.org/nix/install)
```2. Install [Homebrew](https://brew.sh) (macOS only)
Homebrew is used primarily to install desktop applications.
```bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```3. Install packages
This will install packages.
```bash
shelly-bootstrap-pkgs
```## Additional setup (optional)
### SSH
Generate an SSH key:
```bash
cd ~/.ssh
generate-ssh-key
```### GitHub
Authenticate with GitHub:
```bash
gh auth login --git-protocol ssh --hostname github.com --web
```If you are operating over ssh, you will get an error starting the browser (because the `DISPLAY` environment variable isn't available). Instead, go directly to https://github.com/login/device to enter your one-time code.
### Git signing key
On existing machine:
```bash
git-signing-key copy $newMachine
```### Myrepos
Clone my repos
```bash
cd ~/Code && mr checkout
```### Doom Emacs
```bash
doom install
```