-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
47 lines (34 loc) · 1.14 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# ~/.env
export EDITOR=vim
# Path
#PATH="/usr/local/opt/sqlite/bin:$PATH"
#PATH="/usr/local/opt/[email protected]/bin:$PATH"
PATH="$HOME/bin:$HOME/.local/bin:$PATH"
export PATH
# This is the directory where you can find PMS
PMS=$HOME/.pms
# Setting this to 1 will enable the PMS debug mode
PMS_DEBUG=1
# github repo
PMS_REPO=JoshuaEstes/pms
# full github repo
PMS_REMOTE=https://github.com/${PMS_REPO}.git
# which branch to use
PMS_BRANCH=main
# This is the directory where you can find custom PMS stuff like libraries,
# plugins, and themes that the user has created
PMS_LOCAL=${PMS}/local
# Cache dir
PMS_CACHE_DIR=${PMS}/cache
# Log directory
PMS_LOG_DIR=${PMS}/log
# This is the repository that updates will be pushed to
PMS_DOTFILES_REPO=JoshuaEstes/dotfiles
# Full git remote for dotfiles repo
[email protected]:${PMS_DOTFILES_REPO}.git
# What is the branch that we will be using for dotfiles
PMS_DOTFILES_BRANCH=main
# This will be the location where the git repo maintain your dotfiles. Your
# dotfiles will not be stored here. You will be able to view and edit your
# dotfiles in your $HOME directory
PMS_DOTFILES_GIT_DIR=${HOME}/.dotfiles