Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shmileee/dotfiles
LunarVim, Tmux, Fish, Chezmoi and other configurations for macOS & Linux. Documentation:
https://github.com/shmileee/dotfiles
anisble anyenv asdf chezmoi docker dotfiles fish homebrew linux lunarvim macos neovim tmux vim vimrc
Last synced: 3 months ago
JSON representation
LunarVim, Tmux, Fish, Chezmoi and other configurations for macOS & Linux. Documentation:
- Host: GitHub
- URL: https://github.com/shmileee/dotfiles
- Owner: shmileee
- Created: 2017-12-22T09:19:38.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-07-19T13:15:08.000Z (4 months ago)
- Last Synced: 2024-07-19T17:28:58.281Z (4 months ago)
- Topics: anisble, anyenv, asdf, chezmoi, docker, dotfiles, fish, homebrew, linux, lunarvim, macos, neovim, tmux, vim, vimrc
- Language: Shell
- Homepage: https://oponomarov.com
- Size: 1.24 MB
- Stars: 21
- Watchers: 3
- Forks: 6
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - shmileee/dotfiles - LunarVim, Tmux, Fish, Chezmoi and other configurations for macOS & Linux. Documentation: (Shell)
README
# Dotfiles
Fully automated development environment. Read the full documentation
[here](https://oponomarov.com).[![macos](https://github.com/shmileee/dotfiles/actions/workflows/macos.yaml/badge.svg)](https://github.com/shmileee/dotfiles/actions/workflows/macos.yaml)
[![docker](https://github.com/shmileee/dotfiles/actions/workflows/docker.yaml/badge.svg)](https://github.com/shmileee/dotfiles/actions/workflows/docker.yaml)## Installation
Install everything with single `curl` command:
```bash
curl -fsSL oponomarov.com/d | sh -s -- --all
```## Running Inside Docker
Run `docker run -it shmileee/dotfiles` to spawn a docker container which is
automatically [built and
pushed](https://github.com/shmileee/dotfiles/actions/workflows/docker.yaml) with
GitHub Actions or build your own:```bash
docker buildx build --platform linux/amd64 -t dotfiles --progress plain .
```## Installation Flow
```
┌────────────────────────────────────────────┐
┌──┤curl -fsSL oponomarov.com/d | sh -s -- --all│
│ └────────────────────────────────────────────┘
│
│
│ ┌─────────────────────────────────────┐
├───► │git clone shmileee/dotfiles.git /tmp │
│ └─────────────────────────────────────┘
│
│ ┌─────────────────────────┐ ┌──────────────────────────┐
├───► │./install_dependencies.sh├────►│ apt install │
│ └─────────────────────────┘ └──────────────────────────┘
│
│ ┌──────────────────┐
├───► │./install_brew.sh │
│ └──────────────────┘
│
│ ┌────────────┐
└───► │./ansible.sh│
└─────┬──────┘
│
┌────────┘
│
│ ┌─────────────────────────┐
├─►│install community.general│
│ └─────────────────────────┘
│
│ ┌──────────────────────────┐
│ │ prompt for password if │
├─►│ sudo is not passwordless │
│ └──────────────────────────┘
│
│
│ ┌───────────────────────────────┐
└─►│ansible-playbook ... main.yaml │
└───────────────┬───────────────┘
│
┌────────────────┘
│ ┌────────────────────────┐
│ ┌──────┐ │ brew install │
├─►│common├──────►│ brew install │
│ └──────┘ └────────────────────────┘
│
│ ┌───────┐
├─►│ fonts │
│ └───────┘
│ ┌───────────────┐
│ ┌──────────┐ │ chezmoi init │
├─►│ dotfiles ├──►│ chezmoi update│
│ └──────────┘ └───────────────┘
│
│
│
│ ┌────┐ ┌────────────────────┐
├─►│fish├───────┐ │change default shell│
│ └────┘ └►│install fisher │
│ │install fish plugins│
│ └────────────────────┘
│
│
│ ┌──────────────────────┐
│ ┌──────┐ │ either: │
├─►│neovim├──────►│ - build from source │
│ └──────┘ │ - install binary │
│ └──────────────────────┘
│
│
│ ┌───────────────────────────┐
│ ┌────────┐ │ download │
├─►│lunarvim├────►│ install │
│ └────────┘ │ update config with chezmoi│
│ └───────────────────────────┘
│
│
│ ┌────────────────────┐
│ ┌────┐ │ install plugins │
├─►│asdf├────────►│ install tools │
│ └────┘ │ set global versions│
│ └────────────────────┘
│
│ ┌────┐ ┌────────────────────┐
├─►│ go ├────────►│ install go packages│
│ └────┘ └────────────────────┘
│
│ ┌────────┐
├─►│ docker │
│ └────────┘ ┌──────────────────────┐
│ │install plugin manager│
│ ┌──────┐ ┌─►│install plugins │
├─►│ tmux ├────┘ └──────────────────────┘
│ └──────┘
│
│ ┌─────────────────┐
└─►│ system_defaults │
└───────┬─────────┘
│ ┌───────────────────────────────┐
├─────────►│ defaults write │
│ └───────────────────────────────┘
│
│ ┌────────────────────┐
├─────────►│reorder apps in dock│
│ └────────────────────┘
│
│ ┌──────────────────────┐
├─────────►│set custom keybindings│
│ └──────────────────────┘
│
│ ┌───────────────────────┐
└─────────►│defaults write │
└───────────────────────┘
```## Credits
Many thanks to the [dotfiles community](https://dotfiles.github.io).