https://github.com/vncsmyrnk/dotfiles
My linux config for general purposes
https://github.com/vncsmyrnk/dotfiles
dotfiles
Last synced: 7 months ago
JSON representation
My linux config for general purposes
- Host: GitHub
- URL: https://github.com/vncsmyrnk/dotfiles
- Owner: vncsmyrnk
- License: gpl-3.0
- Created: 2024-08-17T14:19:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-31T23:33:19.000Z (8 months ago)
- Last Synced: 2025-06-01T10:14:40.823Z (8 months ago)
- Topics: dotfiles
- Language: Just
- Homepage:
- Size: 74.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# .dotfiles ⚙️
My linux tools config for general purposes.
## Motivation
- Gather all configuration files for general purpose _CLI_ tools in one place.
- Have a unique and modular installer
## Structure expected
Each config tool is a submodule and must be able to install itself.
Each module must have a `justfile` with the following recipes:
- `install`: Installs dependencies and run configuration commands (usually with `stow`)
- `config`: Runs the config commands only
- `unset-config`: Unsets the config (usually with `stow -D`)
## Install
```bash
git clone git@github.com:vncsmyrnk/dotfiles.git $HOME/dotfiles
cd $HOME/dotfiles
./before-install.sh # checks base dependencies
just install # actually installs and configs modules
```
> [!WARNING]
> - When updating with breaking changes make sure to _unset_ the updated config and then _config_ it again.
> - It is recommended to config each module individually. `shell-utils` should be configured first, then `zsh-config` and then the rest.