tangled
alpha
login
or
join now
danieldaum.net
/
dotfiles
0
fork
atom
my personal dotfiles
0
fork
atom
overview
issues
pulls
pipelines
add brewfile, zed config, and update zshrc
danieldaum.net
2 months ago
b5dfea94
e36f52a3
+127
3 changed files
expand all
collapse all
unified
split
.zshrc
Brewfile
zed_settings.json
+7
.zshrc
reviewed
···
8
8
9
9
# eza ls replacement (long, all files, human-readable, icons, git info)
10
10
alias ll="eza -al --group-directories-first --icons --git --color=auto --long --header --classify"
11
11
+
12
12
+
# java (hopefully not here for long)
13
13
+
export PATH="/opt/homebrew/opt/openjdk/bin:$PATH"
14
14
+
export CPPFLAGS="-I/opt/homebrew/opt/openjdk/include"
15
15
+
16
16
+
# rust
17
17
+
. "$HOME/.cargo/env"
+54
Brewfile
reviewed
···
1
1
+
brew "antidote"
2
2
+
brew "bat"
3
3
+
brew "eza"
4
4
+
brew "go"
5
5
+
brew "jq"
6
6
+
brew "node"
7
7
+
brew "openjdk"
8
8
+
brew "pnpm"
9
9
+
brew "rustup"
10
10
+
brew "uv"
11
11
+
cask "alt-tab"
12
12
+
cask "anytype"
13
13
+
cask "balenaetcher"
14
14
+
cask "beekeeper-studio"
15
15
+
cask "bloom"
16
16
+
cask "bruno"
17
17
+
cask "calibre"
18
18
+
cask "cork"
19
19
+
cask "crossover"
20
20
+
cask "cryptomator"
21
21
+
cask "dbngin"
22
22
+
cask "discord"
23
23
+
cask "dockdoor"
24
24
+
cask "downie"
25
25
+
cask "epic-games"
26
26
+
cask "font-geist-mono"
27
27
+
cask "gpg-suite"
28
28
+
cask "iina"
29
29
+
cask "linear-linear"
30
30
+
cask "little-snitch"
31
31
+
cask "mac-mouse-fix"
32
32
+
cask "mullvad-vpn"
33
33
+
cask "ogdesign-eagle"
34
34
+
cask "orbstack"
35
35
+
cask "orion"
36
36
+
cask "pearcleaner"
37
37
+
cask "permute"
38
38
+
cask "pgadmin4"
39
39
+
cask "proton-drive"
40
40
+
cask "proton-mail"
41
41
+
cask "proton-pass"
42
42
+
cask "protonvpn"
43
43
+
cask "raycast"
44
44
+
cask "rectangle"
45
45
+
cask "runelite"
46
46
+
cask "screen-studio"
47
47
+
cask "secretive"
48
48
+
cask "signal"
49
49
+
cask "stats"
50
50
+
cask "steam"
51
51
+
cask "tailscale-app"
52
52
+
cask "warp"
53
53
+
cask "yubico-authenticator"
54
54
+
cask "zed"
+66
zed_settings.json
reviewed
···
1
1
+
// Zed settings
2
2
+
//
3
3
+
// For information on how to configure Zed, see the Zed
4
4
+
// documentation: https://zed.dev/docs/configuring-zed
5
5
+
//
6
6
+
// To see all of Zed's default settings without changing your
7
7
+
// custom settings, run `zed: open default settings` from the
8
8
+
// command palette (cmd-shift-p / ctrl-shift-p)
9
9
+
{
10
10
+
// practical
11
11
+
"gutter": {
12
12
+
"line_numbers": true,
13
13
+
},
14
14
+
"redact_private_values": false,
15
15
+
"agent": {
16
16
+
"play_sound_when_agent_done": true,
17
17
+
"default_profile": "write",
18
18
+
"model_parameters": [],
19
19
+
},
20
20
+
"autosave": {
21
21
+
"after_delay": {
22
22
+
"milliseconds": 1000,
23
23
+
},
24
24
+
},
25
25
+
"ensure_final_newline_on_save": true,
26
26
+
"remove_trailing_whitespace_on_save": true,
27
27
+
"format_on_save": "on",
28
28
+
"soft_wrap": "editor_width",
29
29
+
30
30
+
// ai completions on input
31
31
+
"show_completions_on_input": true,
32
32
+
"show_edit_predictions": false,
33
33
+
34
34
+
"inlay_hints": {
35
35
+
"enabled": true,
36
36
+
"show_type_hints": true,
37
37
+
"show_parameter_hints": true,
38
38
+
"show_other_hints": true,
39
39
+
"show_background": false,
40
40
+
"edit_debounce_ms": 700,
41
41
+
"scroll_debounce_ms": 50,
42
42
+
"toggle_on_modifiers_press": null,
43
43
+
},
44
44
+
45
45
+
// visual
46
46
+
"theme": {
47
47
+
"mode": "dark",
48
48
+
"light": "Gruvbox Light Hard",
49
49
+
"dark": "Warp One Dark",
50
50
+
},
51
51
+
"icon_theme": {
52
52
+
"light": "Zed (Default)",
53
53
+
"dark": "Material Icon Theme",
54
54
+
},
55
55
+
56
56
+
"buffer_font_family": "Geist Mono",
57
57
+
"ui_font_family": "Geist Mono",
58
58
+
"ui_font_size": 16,
59
59
+
"buffer_font_size": 15,
60
60
+
61
61
+
// telemetry
62
62
+
"telemetry": {
63
63
+
"diagnostics": false,
64
64
+
"metrics": false,
65
65
+
},
66
66
+
}