Skip to content

BrycensRanch/dotfiles

 
 

Repository files navigation

. dotfiles

These are just my personal dotfiles that I've converted into a starter template for other developers like yourself. If you like everything the way it is, just use this repository as-is. However, you're probably better off generating your own dotfiles reposistory using this as a template, so you can freely add/remove files and tweak things exactly as you like.

Gitpod: Automated Install

The setup is really simple - just add this repository URL to your Preferences in Gitpod's Dashboard.

Screenshot of the dotfiles option's location in the dashboard is included below.

Whenever you fire up a new workspace, Gitpod will clone and install the dotfiles for you ahead of time. This means you can get right into coding, rather than being forced to configure your terminal and such on each new workspace.

Open your Gitpod Dashboard, and add this url to the field at the bottom of the page:

   https://github.com/nberlette/dotfiles.git

All the files will be located in ~/.dotfiles (/home/gitpod/.dotfiles) inside a Gitpod Workspace. You'll nice the .git folder is still intact, giving you access to the commit history and remote origin, so it's really hassle-free to commit and push some changes right from with a running workspace!

Updating while in a running workspace

If you're running a workspace already and for some reason your remote origin has updated externally, try this:

cd ~/.dotfiles && git pull

Something broken? Check the logs.

If you're encountering a bug or something just isn't working correctly, you can check logs in two places. Gitpod stores a log file located at ~/.dotfiles.log, which may shed some light on what's going on during the install process when your workspaces are being built. Otherwise, the install.sh script pipes its stderr to timestamped files inside of the ~/.dotfiles folder:

# logs are stored in timestamped files
cd ~/.dotfiles
ls .*.log

# .install.1650326691.log
# .install.1650325105.log

Location in the Gitpod Dashboard

Screen Shot 2022-04-18 at 4 24 54 PM


Manual Installation

Want to install these dotfiles on an already-running workspace? That's cool too! Before proceeding to install them manually, you need to copy the files from this repository to your workspace.

Clone the repo

gh repo clone nberlette/dotfiles ~/.dotfiles
git clone --depth 1 https://github.com/nberlette/dotfiles.git ~/.dotfiles

Run install.sh

cd ~/.dotfiles && ./install.sh

MIT © Nicholas Berlette. Overly inspired by jessfraz/dotfiles. Thanks Jess!

About

Nick's opinionated dotfiles setup

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 96.1%
  • TypeScript 3.6%
  • Other 0.3%