Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spodin/dotfiles
My dotfiles
https://github.com/spodin/dotfiles
dotfiles zsh
Last synced: 1 day ago
JSON representation
My dotfiles
- Host: GitHub
- URL: https://github.com/spodin/dotfiles
- Owner: spodin
- Created: 2021-11-28T15:54:11.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-25T20:32:10.000Z (6 months ago)
- Last Synced: 2024-07-25T23:25:08.841Z (6 months ago)
- Topics: dotfiles, zsh
- Language: Shell
- Homepage:
- Size: 60.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
## Installation
```bash
git clone https://github.com/spodin/dotfiles.git ~/.config/dotfiles && ~/.config/dotfiles/install.sh
```## Shell setup
- [Zsh shell](https://www.zsh.org)
- [Oh My Zsh](https://ohmyz.sh) - framework for managing Zsh configuration
- [Powerlevel10k](https://github.com/romkatv/powerlevel10k) - shell theme
- [Eza](https://eza.rocks) - `ls` replacement
- [Bat](https://github.com/sharkdp/bat) - `cat` replacement
- [Fzf](https://github.com/junegunn/fzf) - fuzzy search and filtering
```bash
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf && \
~/.fzf/install \
--key-bindings \
--completion \
--no-update-rc \
--no-bash \
--no-fish
```
- [Sdkman](https://sdkman.io) - managing parallel versions of multiple SDKs```bash
curl -s "https://get.sdkman.io?rcupdate=false" | bash
```
## Git setup```bash
git config -f ~/.gitlocal user.name "Your Name"
``````bash
git config -f ~/.gitlocal user.email "[email protected]"
```