Skip to content

Commit 1e6fb2c

Browse files
committed
Add Warp config
1 parent e13fcea commit 1e6fb2c

2 files changed

Lines changed: 55 additions & 1 deletion

File tree

configs/warp/settings.toml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
[privacy]
2+
telemetry_enabled = false
3+
crash_reporting_enabled = false
4+
custom_secret_regex_list = []
5+
6+
[appearance.text]
7+
font_size = 15.0
8+
font_name = "FiraCode Nerd Font Mono"
9+
10+
[appearance.window]
11+
override_blur = 40
12+
override_opacity = 80
13+
14+
[appearance.themes]
15+
system_theme = true
16+
selected_system_themes = { dark = "cyber_wave", light = "light" }
17+
18+
[appearance.cursor]
19+
cursor_blink = "disabled"
20+
21+
[appearance.panes]
22+
should_dim_inactive_panes = true
23+
24+
[code.editor]
25+
use_warp_as_default_editor = true
26+
27+
[code.indexing]
28+
agent_mode_codebase_context_auto_indexing = true
29+
30+
[general]
31+
restore_session = false
32+
login_item = false
33+
34+
[terminal.input]
35+
error_underlining_enabled = false
36+
show_hint_text = false
37+
honor_ps1 = true
38+
39+
[notifications.preferences]
40+
mode = "enabled"
41+
42+
[agents]
43+
cloud_conversation_storage_enabled = false
44+
45+
[agents.warp_agent.active_ai]
46+
code_suggestions_enabled = false
47+
48+
[agents.warp_agent.input]
49+
ai_auto_detection_enabled = false
50+
nld_in_terminal_enabled = false
51+
52+
[account]
53+
is_settings_sync_enabled = false

scripts/shell.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,12 @@ mkdir -p "$HOME/.config/mise"
3434
symlink "$REPO_PATH/configs/mise/config.toml" "$HOME/.config/mise/config.toml"
3535
symlink "$REPO_PATH/configs/mise/settings.toml" "$HOME/.config/mise/settings.toml"
3636
symlink "$REPO_PATH/configs/starship/starship.toml" "$HOME/.config/starship.toml"
37+
mkdir -p "$HOME/.warp"
38+
symlink "$REPO_PATH/configs/warp/settings.toml" "$HOME/.warp/settings.toml"
3739

3840
# Symlink Nextcloud dirs if present
3941
if [ -d "$HOME/Nextcloud/Apps/" ]; then
4042
symlink "$HOME/Nextcloud/Apps/macbook-scripts" "$HOME/scripts"
41-
mkdir -p "$HOME/.warp"
4243
symlink "$HOME/Nextcloud/Apps/Warp/launch_configurations" "$HOME/.warp/launch_configurations"
4344
fi
4445

0 commit comments

Comments
 (0)