Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ccssmnn/dotfiles
https://github.com/ccssmnn/dotfiles
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ccssmnn/dotfiles
- Owner: ccssmnn
- Created: 2024-03-01T20:43:06.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-12-07T09:12:33.000Z (16 days ago)
- Last Synced: 2024-12-07T10:18:39.938Z (16 days ago)
- Language: Shell
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ccssmnn - .dotfiles
I mainly develop in NodeJS and Go using Helix and Lazygit.
## Docker
For a IDE Docker container:
```docker
FROM ubuntu:latest# Install necessary packages
RUN apt-get update && apt-get install -y \
curl \
zsh \
git# Clone dotfiles repository into the home directory
WORKDIR /root
RUN git clone https://github.com/ccssmnn/dotfiles.git# Set up dotfiles and install dependencies
WORKDIR /root/dotfiles
RUN chmod +x bootstrap.sh && ./bootstrap.sh# Set default shell to zsh
CMD ["zsh"]
```