-
Notifications
You must be signed in to change notification settings - Fork 14
/
defaults.ps1
executable file
·187 lines (151 loc) · 5.11 KB
/
defaults.ps1
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
##########################################################
# conventions
##########################################################
# uppercase for global variables
# lowercase for local variables
##########################################################
# basic settings
##########################################################
# default editor, can be changed by function `ched()`
$env:EDITOR = 'code'
# terminal editor
$env:EDITOR_T = 'vi'
##########################################################
# select ox-plugins
##########################################################
# package managers
# - oxppc: conda
# - oxpppx: pixi
# - oxppnj: npm + pnpm
# - oxpptl: tlmgr (texlive)
# languages
# - oxpljl: julia
# - oxplrb: ruby (including gem)
# - oxplrs: rust (including cargo)
# app cli
# - oxpcbw: bitwarden
# - oxpces: espanso
# - oxpcjr: jupyter (notebook, lab, book)
# - oxpcol: ollama
# - oxpcvs: vscode
# system utils
# - oxpufm: format conversion
# extra utils
# - oxpxns: notes
$Global:OX_PLUGINS = @(
'oxpufm',
'oxpcvs'
)
##########################################################
# select initial and backup configurations
##########################################################
# backup file path
$env:OX_BACKUP = "$HOME\Documents\backup"
# shell
$Global:OX_OXIDE.bkox = "$env:OX_BACKUP\shell\custom.ps1"
##########################################################
# git
##########################################################
# default files
$Global:OX_OXYGEN.oxg = "$env:OXIDIZER\defaults\.gitconfig"
# system files
$Global:OX_ELEMENT.g = "$HOME\.gitconfig"
# backup files
$Global:OX_OXIDE.bkg = "$env:OX_BACKUP\projects\.gitconfig"
##########################################################
# terminal
##########################################################
if ( Test-Path "$env:LOCALAPPDATA\Packages\Microsoft.windowsTerminal_8wekyb3d8bbwe\LocalState\settings.json" ) {
$Global:OX_ELEMENT.wt = "$env:LOCALAPPDATA\Packages\Microsoft.windowsTerminal_8wekyb3d8bbwe\LocalState\settings.json"
}
else { $Global:OX_ELEMENT.wt = "C:\Scoop\apps\windows-terminal\current\settings\settings.json" }
if ( Test-Path $Global:OX_ELEMENT.wt ) {
$Global:OX_OXIDE.bkwt = "$env:OX_BACKUP\terminal\windows-terminal.jsonc"
}
else {
$Global:OX_ELEMENT.wz = "$HOME\.wezterm.lua"
if ( !(Test-Path $Global:OX_ELEMENT.wz) ) {
New-Item -Path $Global:OX_ELEMENT.wz -ItemType File
}
$Global:OX_OXIDE.bkwz = "$env:OX_BACKUP\terminal\wezterm.lua"
}
##########################################################
# proxy settings
##########################################################
# c: clash, m: clash-meta, v: v2ray
$Global:OX_PROXY = @{
'c' = '7898'
'm' = '7897'
'v' = '1080'
}
##########################################################
# conda settings
##########################################################
# predefined conda environments
# set the length of key < 3
$Global:OX_CONDA_ENV = @{
b = 'base'
}
# # conda env stats with bkce, and should be consistent with OX_CONDA_ENV
# # $Global:OX_OXIDE.bkceb = "$env:OX_BACKUP\conda\conda-base.txt"
##########################################################
# julia settings
##########################################################
# predefined julia environments
# set the length of key <= 3
# if ([string]::IsNullOrEmpty($env:JULIA_DEPOT_PATH)) {
# $env:JULIA_DEPOT_PATH = "$HOME\.julia"
# }
# $Global:OX_JULIA_ENV = @{
# b = "$env:JULIA_DEPOT_PATH\environments\v$(julia -v | rg -o '\d+\.\d+')"
# # t = "tutorial"
# }
# # julia env stats with bkjl, and should be consistent with OX_JULIA_ENV
# $Global:OX_OXIDE.bkjlb = "$env:OX_BACKUP\julia\julia-base.txt"
##########################################################
# others settings
##########################################################
# zoxide
$Global:OX_OXIDE.bkz = "$env:OX_BACKUP\apps\db.zo"
##########################################################
# common aliases
##########################################################
# shortcuts
function .. { cd .. }
function ... { cd ../.. }
function cat { bat $args }
function ls { lsd $args }
function ll { lsd -l $args }
function la { lsd -a $args }
function lla { lsd -la $args }
function e { echo $args }
function rr { rm -rf $args }
function c { clear }
# tools
Remove-Item alias:man -Force -ErrorAction SilentlyContinue
function man { tldr $args }
function hf { hyperfine $args }
# oxidizer
# export config
function epf { oxf $args }
# import config
function ipf { rdf $args }
# initialize config
function iif { clzf $args }
##########################################################
# powershell
##########################################################
function tt { hyperfine --warmup 3 --shell powershell '. $PROFILE' }
##########################################################
# startup & daily commands
##########################################################
# donwload path
$env:OX_DOWNLOAD = "$HOME\Desktop"
$Global:OX_STARTUP = 1
function startup {
Set-Location "$HOME\Desktop"
}
##########################################################
# notes apps
##########################################################
# $Global:OX_OXIDIAN = ""