An open API service indexing awesome lists of open source software.

https://github.com/intrip/dotfiles

A set of vim, zsh, git dotfiles
https://github.com/intrip/dotfiles

dotfiles settings

Last synced: 5 months ago
JSON representation

A set of vim, zsh, git dotfiles

Awesome Lists containing this project

README

          

jacopo dotfiles
-------------

My personal collection of dotfiles

Requirements
------------

Set zsh as your login shell:

chsh -s $(which zsh)

Install spaceshift prompt (outdated):

https://denysdovhan.com/spaceship-prompt/#installing

Install
-------

Clone onto your laptop:

git clone git@github.com:intrip/dotfiles.git ~/.dotfiles

Install [rcm](https://github.com/thoughtbot/rcm):

brew tap thoughtbot/formulae
brew install rcm

Install the dotfiles:

env RCRC=$HOME/.dotfiles/rcrc rcup

Configuration
-------------

### Secrets (API keys, tokens)

Create a `~/.secrets.local` file for sensitive environment variables (this file is not tracked by git):

touch ~/.secrets.local

Add your API keys:

# OpenAI
export OPENAI_API_KEY="your-api-key-here"