Files
home/arty.yml
T

84 lines
3.5 KiB
YAML
Raw Normal View History

2026-06-17 19:30:07 +02:00
name: "Valknar's home"
version: "1.0.0"
description: "Valknar's home repository"
author: "valknar@pivoine.art"
license: "MIT"
notes: |
# Valknar's Home Repository
This is a **personal development environment** configuration managed with `arty`.
## Quick Start
```bash
2026-06-23 11:26:14 +02:00
curl https://dev.pivoine.art/valknar/home/raw/branch/main/bin/setup -sSf | sh
2026-06-17 19:30:07 +02:00
```
## Key Features
- **Shell Configuration**: Zsh with Oh-My-Zsh and Powerlevel10k theme
2026-06-21 16:47:50 +02:00
- **Version Managers**: nvm (Node), rbenv (Ruby), pyenv (Python)
2026-06-17 19:30:07 +02:00
- **Development Tools**: Docker, Rust, Node.js, Python, Ruby
- **Utilities**: Custom scripts in `bin/` directory
## Links
2026-06-21 16:47:50 +02:00
- [Repository](ssh://git@dev.pivoine.art/valknar/home.git)
- [Documentation](https://dev.pivoine.art/valknar/home)
2026-06-17 19:30:07 +02:00
references:
- url: https://github.com/nvm-sh/nvm.git
into: .nvm
- url: https://github.com/rbenv/rbenv.git
into: .rbenv
- url: https://github.com/rbenv/ruby-build.git
into: .rbenv/plugins/ruby-build
- url: https://github.com/pyenv/pyenv.git
into: .pyenv
- url: https://github.com/ohmyzsh/ohmyzsh.git
into: .oh-my-zsh
- url: https://github.com/romkatv/powerlevel10k.git
2026-06-21 15:41:51 +02:00
into: .zsh/themes/powerlevel10k
2026-06-17 19:30:07 +02:00
- url: https://github.com/marlonrichert/zsh-autocomplete.git
2026-06-21 15:41:51 +02:00
into: .zsh/plugins/zsh-autocomplete
2026-06-17 19:30:07 +02:00
- url: https://github.com/zsh-users/zsh-autosuggestions.git
2026-06-21 15:41:51 +02:00
into: .zsh/plugins/zsh-autosuggestions
2026-06-17 19:30:07 +02:00
- url: https://github.com/zsh-users/zsh-syntax-highlighting.git
2026-06-21 15:41:51 +02:00
into: .zsh/plugins/zsh-syntax-highlighting
2026-06-17 19:30:07 +02:00
scripts:
2026-06-21 16:40:03 +02:00
debian:upgrade: sudo apt update && sudo apt upgrade -y
debian:setup:contrib: sudo sed -i 's/main non-free-firmware/main contrib non-free non-free-firmware/g' /etc/apt/sources.list
2026-06-22 15:19:30 +02:00
debian:install:base: sudo apt install -y build-essential git curl wget unzip zip tar zsh file fzf
2026-06-21 16:40:03 +02:00
debian:install:libs: sudo apt install -y libffi-dev zlib1g-dev libyaml-dev libssl-dev liblzma-dev libbz2-dev libncurses-dev libreadline-dev libsqlite3-dev python3-tk tk-dev zstd
2026-06-23 12:28:10 +02:00
debian:install:tools: sudo apt install -y imagemagick rsvg-convert ffmpeg yt-dlp shellcheck
2026-06-21 19:15:30 +02:00
docker:install: curl -fsSL -o- https://get.docker.com | sudo sh && sudo usermod -aG docker $USER
git:config: |
printf 'Name: ' && read name
printf 'Email: ' && read email
printf '[user]\n\tname = %s\n\temail = %s\n' "$name" "$email" > ~/.gitconfig.local
echo "Written ~/.gitconfig.local"
2026-06-23 11:26:14 +02:00
ssh:keygen: ssh-keygen -t ed25519 -C "$(git config --global --include user.email)"
2026-06-22 17:30:01 +02:00
rust:install: curl https://sh.rustup.rs -sSf | sh -s -- --no-modify-path -y
2026-06-21 18:31:48 +02:00
rust:install:tools: cargo install bat fd-find yazi-build
rust:update: rustup update
2026-06-23 10:35:59 +02:00
node:install: . "$HOME/.nvm/nvm.sh" && nvm install
2026-06-21 16:40:03 +02:00
node:install:base: npm i -g npm pnpm
ruby:install: rbenv install
ruby:install:base: gem install bundler
python:install: pyenv install
go:install: sudo apt install -y golang-go
2026-06-22 15:19:30 +02:00
go:install:tools: |
CGO_ENABLED=1 go install -tags extended,withdeploy github.com/gohugoio/hugo@latest
go install github.com/mikefarah/yq/v4@latest
2026-06-21 16:40:03 +02:00
go:clean: go clean -cache && go clean -modcache
vscode:extensions: |
code --install-extension editorconfig.editorconfig
2026-06-23 12:28:10 +02:00
micro:install:
sudo apt install -y micro
micro:plugins: |
micro -plugin install editorconfig
2026-06-22 15:19:30 +02:00
fonts:install: |
mkdir -p ~/.local/share/fonts/Meslo
curl -L https://github.com/ryanoasis/nerd-fonts/releases/latest/download/Meslo.tar.xz | tar --extract --xz --directory ~/.local/share/fonts/Meslo
fc-cache -fv
2026-06-22 19:32:33 +02:00
bat:build: bat cache --build