Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bergie/dotfiles
My Linux dotfiles
https://github.com/bergie/dotfiles
dotfiles
Last synced: 10 days ago
JSON representation
My Linux dotfiles
- Host: GitHub
- URL: https://github.com/bergie/dotfiles
- Owner: bergie
- Created: 2011-12-14T10:31:18.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2023-03-06T03:57:02.000Z (over 1 year ago)
- Last Synced: 2024-10-13T20:12:19.176Z (25 days ago)
- Topics: dotfiles
- Language: Vim script
- Homepage: https://bergie.iki.fi/blog/docker-developer-shell/
- Size: 180 KB
- Stars: 25
- Watchers: 3
- Forks: 4
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
My Unix dotfiles
================Mostly used for Node.js and IoT development.
## Running via Docker
There is a Docker image available for this setup. Run it with:
```shell
$ docker run -v ~/Projects:/projects -v workstation:/root -v ~/.ssh:/keys --name workstation --rm -it bergie/shell
```### Updating the container
```shell
$ docker volume rm workstation && docker volume create workstation
$ docker pull bergie/shell
```### Requirements
* Terminal application (xterm, iTerm2, whatever)
* Docker
* [Powerline fonts](https://github.com/powerline/fonts)## Installation on host
These dotfiles are easiest to deploy with [GNU Stow](https://www.gnu.org/software/stow/). Install it for the appropriate operating system:
```term
$ sudo apt-get install stow # Debian derivatives
$ sudo pacman -S stow # Arch
$ brew install stow # MacOS
$ apt install stow # Termux
```Then apply the configuration bundles you want:
```term
$ stow zsh # zsh and tmux configuration
$ stow git # git configuration
$ stow vim # vim configuration
```For vim you'll also want to fetch the plugins:
```term
$ git submodule update --init
```