https://github.com/sebdybowski/dotfiles
Set of configs and scripts I use on Linux & MacOS.
https://github.com/sebdybowski/dotfiles
alacritty bash dotfiles linux macos zsh
Last synced: 5 months ago
JSON representation
Set of configs and scripts I use on Linux & MacOS.
- Host: GitHub
- URL: https://github.com/sebdybowski/dotfiles
- Owner: sebdybowski
- Created: 2022-08-11T18:23:51.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-12-31T01:08:17.000Z (6 months ago)
- Last Synced: 2026-01-04T01:34:53.885Z (6 months ago)
- Topics: alacritty, bash, dotfiles, linux, macos, zsh
- Language: Shell
- Homepage:
- Size: 57.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Seb Dybowski's dotfiles
My Linux/MacOS config.
# Installation
## Packages
1. **MacOS**: via [homebrew](https://brew.sh/).
```sh
brew install gh git nano nanorc pnpm zsh --cask alacritty font-hack
```
## DotFiles
This command will clone files into your **home/user directory**.
### wget
```bash
bash -c "$(wget -qO- https://raw.githubusercontent.com/sebdybowski/dotfiles/main/install.sh)"
```
### curl
```bash
bash -c "$(curl -sLo- https://raw.githubusercontent.com/sebdybowski/dotfiles/main/install.sh)"
```
## Installation flags
- `--ssh`, pulls code from ssh origin, recommended for dotfiles development/contributions.
# Adjustments
## `.scripts/init.sh`
This is a central file of all *sh* scripts.
If some of them are redundant, feel free to comment the appropriate line:
```sh
source "${__HOME_DIR}/nvm.sh"
# source "${__HOME_DIR}/pnpm.sh" // this won't load on shell start
source "${__HOME_DIR}/ls.sh"
```
# Scripts
If you only want to use my scripts without the dotfiles, find them in [this repository](https://github.com/sebdybowski/scripts).