Skip to content

Commit b10f562

Browse files
committed
add wezterm configuration
1 parent 72fc22b commit b10f562

File tree

3 files changed

+205
-3
lines changed

3 files changed

+205
-3
lines changed

iOS/dotfiles/install

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env zsh
22
if [[ -z $STOW_FOLDERS ]]; then
3-
STOW_FOLDERS="tmux,bin,zsh,git,zed,starship"
3+
STOW_FOLDERS="tmux,bin,zsh,git,zed,starship,wezterm"
44
fi
55

66
if [[ -z $DOTFILES ]]; then

iOS/dotfiles/wezterm/.wezterm.lua

+184
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,184 @@
1+
-- Pull in the wezterm API
2+
local wezterm = require("wezterm")
3+
4+
local config = wezterm.config_builder()
5+
6+
-- Color Scheme:
7+
config.color_scheme = "carbonfox"
8+
config.colors = {
9+
ansi = {
10+
"#282828",
11+
"#ff3399",
12+
"#25be6a",
13+
"#08bdba",
14+
"#78a9ff",
15+
"#be95ff",
16+
"#00e6e6",
17+
"#f2f2f2",
18+
},
19+
brights = {
20+
"#484848",
21+
"#f16da6",
22+
"#46c880",
23+
"#2dc7c4",
24+
"#8cb6ff",
25+
"#c8a5ff",
26+
"#00ffff",
27+
"#ffffff",
28+
},
29+
background = "#000000",
30+
foreground = "#ffffff", -- este es el texto en la terminal
31+
cursor_bg = "#ffffff",
32+
cursor_fg = "#000000",
33+
}
34+
35+
-- Tab bar
36+
config.use_fancy_tab_bar = false
37+
config.hide_tab_bar_if_only_one_tab = true
38+
config.tab_bar_at_bottom = true
39+
40+
-- Window
41+
config.window_decorations = "RESIZE"
42+
config.native_macos_fullscreen_mode = true
43+
config.window_background_opacity = 1.0
44+
config.inactive_pane_hsb = {
45+
saturation = 0.0,
46+
brightness = 0.7,
47+
}
48+
49+
-- Font
50+
config.font_size = 13.0
51+
config.line_height = 1.2
52+
config.font = wezterm.font("JetBrains Mono")
53+
54+
-- This is to be able to use #
55+
config.send_composed_key_when_left_alt_is_pressed = true
56+
57+
return config
58+
59+
--[[
60+
WEZ
61+
[colors]
62+
ansi = [
63+
"#000000",
64+
"#cc5555",
65+
"#55cc55",
66+
"#cdcd55",
67+
"#5555cc",
68+
"#cc55cc",
69+
"#7acaca",
70+
"#cccccc",
71+
]
72+
background = "#000000"
73+
brights = [
74+
"#555555",
75+
"#ff5555",
76+
"#55ff55",
77+
"#ffff55",
78+
"#5555ff",
79+
"#ff55ff",
80+
"#55ffff",
81+
"#ffffff",
82+
]
83+
cursor_bg = "#53ae71"
84+
cursor_border = "#53ae71"
85+
cursor_fg = "#000000"
86+
foreground = "#b3b3b3"
87+
selection_bg = "#4d52f8"
88+
selection_fg = "#000000"
89+
90+
91+
----------------------------------------------------
92+
93+
CarbonFox
94+
95+
[colors]
96+
ansi = [
97+
"#282828",
98+
"#ee5396",
99+
"#25be6a",
100+
"#08bdba",
101+
"#78a9ff",
102+
"#be95ff",
103+
"#33b1ff",
104+
"#dfdfe0",
105+
]
106+
background = "#161616"
107+
brights = [
108+
"#484848",
109+
"#f16da6",
110+
"#46c880",
111+
"#2dc7c4",
112+
"#8cb6ff",
113+
"#c8a5ff",
114+
"#52bdff",
115+
"#e4e4e5",
116+
]
117+
compose_cursor = "#3ddbd9"
118+
cursor_bg = "#f2f4f8"
119+
cursor_border = "#f2f4f8"
120+
cursor_fg = "#161616"
121+
foreground = "#f2f4f8"
122+
scrollbar_thumb = "#7b7c7e"
123+
selection_bg = "#2a2a2a"
124+
selection_fg = "#f2f4f8"
125+
split = "#0c0c0c"
126+
visual_bell = "#f2f4f8"
127+
128+
[colors.indexed]
129+
16 = "#ff7eb6"
130+
17 = "#3ddbd9"
131+
132+
[colors.tab_bar]
133+
background = "#0c0c0c"
134+
inactive_tab_edge = "#0c0c0c"
135+
inactive_tab_edge_hover = "#252525"
136+
137+
[colors.tab_bar.active_tab]
138+
bg_color = "#7b7c7e"
139+
fg_color = "#161616"
140+
intensity = "Normal"
141+
italic = false
142+
strikethrough = false
143+
underline = "None"
144+
145+
[colors.tab_bar.inactive_tab]
146+
bg_color = "#252525"
147+
fg_color = "#b6b8bb"
148+
intensity = "Normal"
149+
italic = false
150+
strikethrough = false
151+
underline = "None"
152+
153+
[colors.tab_bar.inactive_tab_hover]
154+
bg_color = "#353535"
155+
fg_color = "#f2f4f8"
156+
intensity = "Normal"
157+
italic = false
158+
strikethrough = false
159+
underline = "None"
160+
161+
[colors.tab_bar.new_tab]
162+
bg_color = "#161616"
163+
fg_color = "#b6b8bb"
164+
intensity = "Normal"
165+
italic = false
166+
strikethrough = false
167+
underline = "None"
168+
169+
[colors.tab_bar.new_tab_hover]
170+
bg_color = "#353535"
171+
fg_color = "#f2f4f8"
172+
intensity = "Normal"
173+
italic = false
174+
strikethrough = false
175+
underline = "None"
176+
177+
[metadata]
178+
aliases = []
179+
author = "EdenEast"
180+
name = "carbonfox"
181+
origin_url = "https://github.com/EdenEast/nightfox.nvim"
182+
wezterm_version = "20220903-194523-3bb1ed61"
183+
184+
]]

iOS/tasks/core-setup.yml

+20-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,25 @@
1515
shell: mkdir -p $HOME/workspace/work $HOME/workspace/personal $HOME/workspace/github.com/chaCon $HOME/workspace/projects
1616
tags:
1717
- personal
18+
- name: Clone notes
19+
shell: git clone https://github.com/Chacon-tu-drema/notes $HOME/workspace/notes
20+
tags:
21+
- personal
22+
- notes
23+
- name: Clone Documents
24+
shell: git clone https://github.com/Chacon-tu-drema/Documents $HOME/Documents/personal
25+
tags:
26+
- personal
27+
- documents
28+
- name: Clone Images
29+
shell: git clone https://github.com/Chacon-tu-drema/images $HOME/Pictures/personal
30+
tags:
31+
- personal
32+
- images
33+
- name: Install WezTerm
34+
shell: brew --cascade wezterm
35+
tags:
36+
- terminal
1837

1938
# FIX::
2039
# Tengo que agregar mis git personales:
@@ -27,5 +46,4 @@
2746
# ├── notes
2847
# ├── personal
2948
# ├── projects
30-
# ├── work
31-
# └── zig
49+
# └── work

0 commit comments

Comments
 (0)