Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xavier2p/dotfiles
dotfiles, just one command to make an UNIX system mine.
https://github.com/xavier2p/dotfiles
dotfiles shell starship zsh
Last synced: about 2 months ago
JSON representation
dotfiles, just one command to make an UNIX system mine.
- Host: GitHub
- URL: https://github.com/xavier2p/dotfiles
- Owner: Xavier2p
- Created: 2022-09-23T15:22:47.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-14T10:35:28.000Z (10 months ago)
- Last Synced: 2024-04-20T09:05:39.580Z (9 months ago)
- Topics: dotfiles, shell, starship, zsh
- Language: Shell
- Homepage:
- Size: 151 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```text
██████╗ ██████╗ ████████╗███████╗██╗██╗ ███████╗███████╗
██╔══██╗██╔═══██╗╚══██╔══╝██╔════╝██║██║ ██╔════╝██╔════╝
██║ ██║██║ ██║ ██║ █████╗ ██║██║ █████╗ ███████╗
██║ ██║██║ ██║ ██║ ██╔══╝ ██║██║ ██╔══╝ ╚════██║
██████╔╝╚██████╔╝ ██║ ██║ ██║███████╗███████╗███████║
╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚══════╝
```# `dotfiles`
> This repo store all (or almost) my dotfiles.
## Installation
### 1. Clone this repo
```bash
git clone [email protected]:Xavier2p/dotfiles.git ~/.config/dotfiles && cd ~/.config/dotfiles
```### 2. Run the install script
```bash
make
```### 3. Reload your shell
```bash
source ~/.zshrc
```## Tree
```txt
~
├── .config
│ ├── dotfiles
│ │ ├── config
│ │ │ ├── alacritty.yml => ~/.config/alacritty/alacritty.yml
│ │ │ ├── conf.vim => ~/.vimrc
│ │ │ ├── git.conf => ~/.gitconfig
│ │ │ ├── global.gitignore
│ │ │ ├── neofetch.conf => ~/.config/neofetch/config.conf
│ │ │ └── starship.toml
│ │ ├── plugins
│ │ │ └── codestats
│ │ ├── scripts
│ │ │ ├── config.sh
│ │ │ ├── install.sh
│ │ │ └── update.sh
│ │ ├── shell
│ | | ├── aliases.zsh
│ │ │ ├── ascii.sh
│ │ │ ├── completion.zsh
│ │ │ ├── entry.bash => ~/.bashrc
│ | | ├── entry.sh
│ │ │ └── entry.zsh => ~/.zshrc
│ │ ├── Makefile
│ │ └── README.md
│ ├── packages
│ │ └── ...
│ ├── zsh
| | ├── nix-zsh-completions
│ │ ├── zsh-autosuggestions
│ │ ├── zsh-completions
│ │ └── zsh-syntax-highlighting
│ └── ...
└── ...
```