mirror of
https://github.com/itme-brain/dotfiles.git
synced 2026-03-23 19:39:43 -04:00
initial
This commit is contained in:
commit
0380d16266
6 changed files with 165 additions and 0 deletions
41
README.md
Normal file
41
README.md
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# My Dotfiles
|
||||
|
||||
My portable configs — clone everything or just what you need.
|
||||
|
||||
## Quick Install
|
||||
|
||||
```bash
|
||||
bash <(curl -s https://raw.githubusercontent.com/itme-brain/dotfiles/main/install.sh)
|
||||
```
|
||||
|
||||
Interactive menu lets you pick which configs to install. Each one is cloned as its own repo — no dependency on this dotfiles repo.
|
||||
|
||||
## Configs
|
||||
|
||||
| Config | Repo | Location | What it is |
|
||||
|--------|------|----------|------------|
|
||||
| **git** | [itme-brain/git](https://github.com/itme-brain/git) | `~/.config/git` | My global git config and ignores |
|
||||
| **vim** | [itme-brain/vim](https://github.com/itme-brain/vim) | `~/.vim` | Lightweight vim for servers and quick edits. Plugins auto-install on first run |
|
||||
| **nvim** | [itme-brain/nvim](https://github.com/itme-brain/nvim) | `~/.config/nvim` | Full IDE setup with LSP, treesitter, telescope |
|
||||
|
||||
## Install one at a time
|
||||
|
||||
```bash
|
||||
git clone git@github.com:itme-brain/git.git ~/.config/git
|
||||
git clone git@github.com:itme-brain/vim.git ~/.vim
|
||||
git clone git@github.com:itme-brain/nvim.git ~/.config/nvim
|
||||
```
|
||||
|
||||
## Updating
|
||||
|
||||
Each config is its own repo. Just pull:
|
||||
|
||||
```bash
|
||||
cd ~/.vim && git pull
|
||||
cd ~/.config/nvim && git pull
|
||||
cd ~/.config/git && git pull
|
||||
```
|
||||
|
||||
## Requirements
|
||||
|
||||
`git` and `curl`
|
||||
Loading…
Add table
Add a link
Reference in a new issue