Skip to content

Commit 7e35236

Browse files
committed
Copy over existing .config
1 parent 4b6fc2b commit 7e35236

File tree

203 files changed

+75931
-1271
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

203 files changed

+75931
-1271
lines changed

.config/atuin/config.toml

+174
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
## where to store your database, default is your system data directory
2+
## linux/mac: ~/.local/share/atuin/history.db
3+
## windows: %USERPROFILE%/.local/share/atuin/history.db
4+
# db_path = "~/.history.db"
5+
6+
## where to store your encryption key, default is your system data directory
7+
## linux/mac: ~/.local/share/atuin/key
8+
## windows: %USERPROFILE%/.local/share/atuin/key
9+
# key_path = "~/.key"
10+
11+
## where to store your auth session token, default is your system data directory
12+
## linux/mac: ~/.local/share/atuin/session
13+
## windows: %USERPROFILE%/.local/share/atuin/session
14+
# session_path = "~/.session"
15+
16+
## date format used, either "us" or "uk"
17+
# dialect = "us"
18+
19+
## default timezone to use when displaying time
20+
## either "l", "local" to use the system's current local timezone, or an offset
21+
## from UTC in the format of "<+|->H[H][:M[M][:S[S]]]"
22+
## for example: "+9", "-05", "+03:30", "-01:23:45", etc.
23+
# timezone = "local"
24+
25+
## enable or disable automatic sync
26+
# auto_sync = true
27+
28+
## enable or disable automatic update checks
29+
# update_check = true
30+
31+
## address of the sync server
32+
# sync_address = "https://api.atuin.sh"
33+
34+
## how often to sync history. note that this is only triggered when a command
35+
## is ran, so sync intervals may well be longer
36+
## set it to 0 to sync after every command
37+
# sync_frequency = "10m"
38+
39+
## which search mode to use
40+
## possible values: prefix, fulltext, fuzzy, skim
41+
# search_mode = "fuzzy"
42+
43+
## which filter mode to use
44+
## possible values: global, host, session, directory
45+
# filter_mode = "global"
46+
47+
## With workspace filtering enabled, Atuin will filter for commands executed
48+
## in any directory within a git repository tree (default: false)
49+
# workspaces = false
50+
51+
## which filter mode to use when atuin is invoked from a shell up-key binding
52+
## the accepted values are identical to those of "filter_mode"
53+
## leave unspecified to use same mode set in "filter_mode"
54+
# filter_mode_shell_up_key_binding = "global"
55+
56+
## which search mode to use when atuin is invoked from a shell up-key binding
57+
## the accepted values are identical to those of "search_mode"
58+
## leave unspecified to use same mode set in "search_mode"
59+
# search_mode_shell_up_key_binding = "fuzzy"
60+
61+
## which style to use
62+
## possible values: auto, full, compact
63+
style = "compact"
64+
65+
## the maximum number of lines the interface should take up
66+
## set it to 0 to always go full screen
67+
# inline_height = 0
68+
69+
## Invert the UI - put the search bar at the top , Default to `false`
70+
# invert = false
71+
72+
## enable or disable showing a preview of the selected command
73+
## useful when the command is longer than the terminal width and is cut off
74+
# show_preview = false
75+
76+
## what to do when the escape key is pressed when searching
77+
## possible values: return-original, return-query
78+
# exit_mode = "return-original"
79+
80+
## possible values: emacs, subl
81+
# word_jump_mode = "emacs"
82+
83+
## characters that count as a part of a word
84+
# word_chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
85+
86+
## number of context lines to show when scrolling by pages
87+
# scroll_context_lines = 1
88+
89+
## use ctrl instead of alt as the shortcut modifier key for numerical UI shortcuts
90+
## alt-0 .. alt-9
91+
# ctrl_n_shortcuts = false
92+
93+
## default history list format - can also be specified with the --format arg
94+
# history_format = "{time}\t{command}\t{duration}"
95+
96+
## prevent commands matching any of these regexes from being written to history.
97+
## Note that these regular expressions are unanchored, i.e. if they don't start
98+
## with ^ or end with $, they'll match anywhere in the command.
99+
## For details on the supported regular expression syntax, see
100+
## https://docs.rs/regex/latest/regex/#syntax
101+
# history_filter = [
102+
# "^secret-cmd",
103+
# "^innocuous-cmd .*--secret=.+"
104+
# ]
105+
106+
## prevent commands run with cwd matching any of these regexes from being written
107+
## to history. Note that these regular expressions are unanchored, i.e. if they don't
108+
## start with ^ or end with $, they'll match anywhere in CWD.
109+
## For details on the supported regular expression syntax, see
110+
## https://docs.rs/regex/latest/regex/#syntax
111+
# cwd_filter = [
112+
# "^/very/secret/area"
113+
# ]
114+
115+
## Configure the maximum height of the preview to show.
116+
## Useful when you have long scripts in your history that you want to distinguish
117+
## by more than the first few lines.
118+
# max_preview_height = 4
119+
120+
## Configure whether or not to show the help row, which includes the current Atuin
121+
## version (and whether an update is available), a keymap hint, and the total
122+
## amount of commands in your history.
123+
# show_help = true
124+
125+
## Defaults to true. This matches history against a set of default regex, and will not save it if we get a match. Defaults include
126+
## 1. AWS key id
127+
## 2. Github pat (old and new)
128+
## 3. Slack oauth tokens (bot, user)
129+
## 4. Slack webhooks
130+
## 5. Stripe live/test keys
131+
# secrets_filter = true
132+
133+
## Defaults to true. If enabled, upon hitting enter Atuin will immediately execute the command. Press tab to return to the shell and edit.
134+
# This applies for new installs. Old installs will keep the old behaviour unless configured otherwise.
135+
enter_accept = true
136+
137+
138+
## Defaults to "emacs". This specifies the keymap on the startup of `atuin
139+
## search`. If this is set to "auto", the startup keymap mode in the Atuin
140+
## search is automatically selected based on the shell's keymap where the
141+
## keybinding is defined. If this is set to "emacs", "vim-insert", or
142+
## "vim-normal", the startup keymap mode in the Atuin search is forced to be
143+
## the specified one.
144+
# keymap_mode = "auto"
145+
146+
## Cursor style in each keymap mode. If specified, the cursor style is changed
147+
## in entering the cursor shape. Available values are "default" and
148+
## "{blink,steady}-{block,underilne,bar}".
149+
# keymap_cursor = { emacs = "blink-block", vim_insert = "blink-block", vim_normal = "steady-block" }
150+
151+
# network_connect_timeout = 5
152+
# network_timeout = 5
153+
154+
## Timeout (in seconds) for acquiring a local database connection (sqlite)
155+
# local_timeout = 5
156+
157+
## Set this to true and Atuin will minimize motion in the UI - timers will not update live, etc.
158+
## Alternatively, set env NO_MOTION=true
159+
# prefers_reduced_motion = false
160+
161+
#[stats]
162+
# Set commands where we should consider the subcommand for statistics. Eg, kubectl get vs just kubectl
163+
#common_subcommands = [
164+
# "cargo",
165+
# "go",
166+
# "git",
167+
# "npm",
168+
# "yarn",
169+
# "pnpm",
170+
# "kubectl",
171+
#]
172+
#
173+
# Set commands that should be totally stripped and ignored from stats
174+
#common_prefix = ["sudo"]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"optOut": false,
3+
"lastUpdateCheck": 1699060565722
4+
}

.config/gh/config.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# What protocol to use when performing git operations. Supported values: ssh, https
2+
git_protocol: https
3+
# What editor gh should run when creating issues, pull requests, etc. If blank, will refer to environment.
4+
editor:
5+
# When to interactively prompt. This is a global config that cannot be overridden by hostname. Supported values: enabled, disabled
6+
prompt: enabled
7+
# A pager program to send command output to, e.g. "less". Set the value to "cat" to disable the pager.
8+
pager:
9+
# Aliases allow you to create nicknames for gh commands
10+
aliases:
11+
co: pr checkout
12+
# The path to a unix socket through which send HTTP connections. If blank, HTTP traffic will be handled by net/http.DefaultTransport.
13+
http_unix_socket:
14+
# What web browser gh should use when opening URLs. If blank, will refer to environment.
15+
browser:
16+
version: "1"

.config/gh/hosts.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
github.com:
2+
user: t-eckert
3+
git_protocol: https
4+
users:
5+
t-eckert:

.config/helm/repositories.lock

Whitespace-only changes.

.config/helm/repositories.yaml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
apiVersion: ""
2+
generated: "0001-01-01T00:00:00Z"
3+
repositories:
4+
- caFile: ""
5+
certFile: ""
6+
insecure_skip_tls_verify: false
7+
keyFile: ""
8+
name: jetstack
9+
pass_credentials_all: false
10+
password: ""
11+
url: https://charts.jetstack.io
12+
username: ""
13+
- caFile: ""
14+
certFile: ""
15+
insecure_skip_tls_verify: false
16+
keyFile: ""
17+
name: redpanda
18+
pass_credentials_all: false
19+
password: ""
20+
url: https://charts.redpanda.com
21+
username: ""

.config/k9s/aliases.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
aliases:
2+
dp: apps/v1/deployments
3+
sec: v1/secrets
4+
jo: batch/v1/jobs
5+
cr: rbac.authorization.k8s.io/v1/clusterroles
6+
crb: rbac.authorization.k8s.io/v1/clusterrolebindings
7+
ro: rbac.authorization.k8s.io/v1/roles
8+
rb: rbac.authorization.k8s.io/v1/rolebindings
9+
np: networking.k8s.io/v1/networkpolicies

.config/k9s/config.yaml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
k9s:
2+
liveViewAutoRefresh: false
3+
screenDumpDir: /Users/thomaseckert/Library/Application Support/k9s/screen-dumps
4+
refreshRate: 2
5+
maxConnRetry: 5
6+
readOnly: false
7+
noExitOnCtrlC: false
8+
ui:
9+
enableMouse: false
10+
headless: false
11+
logoless: false
12+
crumbsless: false
13+
noIcons: false
14+
skipLatestRevCheck: false
15+
disablePodCounting: false
16+
shellPod:
17+
image: busybox:1.35.0
18+
namespace: default
19+
limits:
20+
cpu: 100m
21+
memory: 100Mi
22+
imageScans:
23+
enable: false
24+
exclusions:
25+
namespaces: []
26+
labels: {}
27+
logger:
28+
tail: 100
29+
buffer: 5000
30+
sinceSeconds: -1
31+
fullScreenLogs: false
32+
textWrap: false
33+
showTime: false
34+
thresholds:
35+
cpu:
36+
critical: 90
37+
warn: 70
38+
memory:
39+
critical: 90
40+
warn: 70

.config/k9s/config.yml

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
k9s:
2+
refreshRate: 2
3+
maxConnRetry: 5
4+
enableMouse: false
5+
headless: false
6+
logoless: false
7+
crumbsless: false
8+
readOnly: false
9+
noExitOnCtrlC: false
10+
noIcons: false
11+
skipLatestRevCheck: false
12+
logger:
13+
tail: 100
14+
buffer: 5000
15+
sinceSeconds: 300
16+
fullScreenLogs: false
17+
textWrap: false
18+
showTime: false
19+
currentContext: kind-pc-demo
20+
currentCluster: kind-pc-demo
21+
clusters:
22+
kind-pc-demo:
23+
namespace:
24+
active: all
25+
lockFavorites: false
26+
favorites:
27+
- all
28+
- default
29+
view:
30+
active: po
31+
featureGates:
32+
nodeShell: false
33+
shellPod:
34+
image: busybox:1.35.0
35+
command: []
36+
args: []
37+
namespace: default
38+
limits:
39+
cpu: 100m
40+
memory: 100Mi
41+
labels: {}
42+
portForwardAddress: localhost
43+
thresholds:
44+
cpu:
45+
critical: 90
46+
warn: 70
47+
memory:
48+
critical: 90
49+
warn: 70
50+
screenDumpDir: /var/folders/y4/tbjf7m5n3_12cw5tzhnngpx00000gn/T/k9s-screens-thomaseckert

.config/lazygit/config.yml

Whitespace-only changes.

.config/lazygit/state.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
lastupdatecheck: 0
2+
recentrepos:
3+
- /Users/thomaseckert/Repos/devy
4+
startuppopupversion: 5
5+
customcommandshistory: []
6+
hidecommandlog: false
7+
ignorewhitespaceindiffview: false

.config/nvim/lazy-lock.json

+2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@
6363
"tokyonight.nvim": { "branch": "main", "commit": "610179f7f12db3d08540b6cc61434db2eaecbcff" },
6464
"trouble.nvim": { "branch": "main", "commit": "f1168feada93c0154ede4d1fe9183bf69bac54ea" },
6565
"venv-selector.nvim": { "branch": "main", "commit": "fcb30164f2c4f8a34a305ead3247954a1fd8634f" },
66+
"vim-astro": { "branch": "main", "commit": "9b4674ecfe1dd84b5fb9b4de1653975de6e8e2e1" },
6667
"vim-illuminate": { "branch": "master", "commit": "305bf07b919ac526deb5193280379e2f8b599926" },
6768
"vim-startuptime": { "branch": "master", "commit": "ad414f255abf4bc7c557fdfbca71a8f0d2d146a4" },
69+
"vim-wakatime": { "branch": "master", "commit": "285c2e4e48fb0c63ced233c00fb10a2edb3b6c94" },
6870
"which-key.nvim": { "branch": "main", "commit": "4433e5ec9a507e5097571ed55c02ea9658fb268a" }
6971
}

.config/nvim/lua/plugins/astro.lua

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
return {
2+
"wuelnerdotexe/vim-astro",
3+
}

.config/nvim/lua/plugins/wakatime.lua

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
return {
2+
"wakatime/vim-wakatime",
3+
lazy = false,
4+
}

.config/op/config

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"latest_signin": "",
3+
"device": "i4kyigz7lbznidj6xpp4awy2re",
4+
"accounts": null
5+
}

.config/raycast/extensions/35fa3856-f360-465f-885c-acf4ebcf19b1/ask.js

+116
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.config/raycast/extensions/35fa3856-f360-465f-885c-acf4ebcf19b1/ask.js.map

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Loading
Loading

.config/raycast/extensions/35fa3856-f360-465f-885c-acf4ebcf19b1/conversation.js

+116
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.config/raycast/extensions/35fa3856-f360-465f-885c-acf4ebcf19b1/conversation.js.map

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)