Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shkm/dotfiles
:godmode: My dotfiles.
https://github.com/shkm/dotfiles
bash dotfiles fish git linux neovim scripts shell tig vim
Last synced: 3 months ago
JSON representation
:godmode: My dotfiles.
- Host: GitHub
- URL: https://github.com/shkm/dotfiles
- Owner: shkm
- Created: 2014-11-17T09:05:28.000Z (about 10 years ago)
- Default Branch: main
- Last Pushed: 2024-09-16T07:38:33.000Z (4 months ago)
- Last Synced: 2024-09-16T09:14:00.248Z (4 months ago)
- Topics: bash, dotfiles, fish, git, linux, neovim, scripts, shell, tig, vim
- Language: Shell
- Homepage:
- Size: 4.03 MB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# :godmode: shkm's dotfiles
These are my dotfiles, managed using [GNU stow](https://www.gnu.org/software/stow/). They're designed for me and subject to change at any time, but feel free to take bits and pieces.
Over the years I've used some pretty esoteric setups; nowadays I'm more focused on Getting Shit Done, and as a result my dotfiles are becoming more spartan.
Current setup involves this software amongst others:
- Fedora, Ubuntu, MacOS
- IntelliJ IDEs
- [Neovim](https://neovim.io/)
- [Fish](https://fishshell.com/)## Bootstrapping (Linux)
```
curl -sL https://raw.githubusercontent.com/shkm/dotfiles/master/setup/setup.sh | bash -s -- --bootstrap
```## Bootstrapping Fish
I use `fisher` as my shell plugin manager, which itself is written in fish. Since fisher requires a list of bundles in my config, but running fish with my config and without fisher bundles causes it to epxlode, bootstrapping is a little tricky. This is what seems to work:
```
fish -c 'curl -sL https://git.io/fisher | source && fisher update'
```