Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: about 1 month ago
JSON representation

LunarVim, Tmux, Fish, Chezmoi and other configurations for macOS & Linux. Documentation:

Awesome Lists containing this project

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).