File tree Expand file tree Collapse file tree 2 files changed +50
-6
lines changed Expand file tree Collapse file tree 2 files changed +50
-6
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ local action = wezterm.action
8
8
-- For example, changing the color scheme:
9
9
config .color_scheme = ' Catppuccin Frappe'
10
10
config .font = wezterm .font ' JetBrainsMono Nerd Font Mono'
11
- config .font_size = 18
11
+ config .font_size = 16
12
12
13
13
config .hide_tab_bar_if_only_one_tab = true
14
14
@@ -28,7 +28,7 @@ config.keys = {
28
28
},
29
29
{
30
30
key = ' w' ,
31
- mods = ' CTRL ' ,
31
+ mods = ' CMD ' ,
32
32
action = action .CloseCurrentPane { confirm = false }
33
33
},
34
34
-- swtiching
@@ -144,9 +144,53 @@ config.keys = {
144
144
mods = ' SHIFT' ,
145
145
action = action .ScrollToBottom
146
146
},
147
- -- links
148
-
149
-
147
+ -- fonts
148
+ {
149
+ key = ' =' ,
150
+ mods = ' CMD|SHIFT' ,
151
+ action = action .IncreaseFontSize
152
+ },
153
+ {
154
+ key = ' -' ,
155
+ mods = ' CMD|SHIFT' ,
156
+ action = action .DecreaseFontSize
157
+ },
158
+ {
159
+ key = ' 0' ,
160
+ mods = ' CMD|SHIFT' ,
161
+ action = action .ResetFontSize
162
+ },
163
+ -- line editing/movement
164
+ {
165
+ key = ' Backspace' ,
166
+ mods = ' ALT' ,
167
+ action = action .SendKey { key = ' w' , mods = ' CTRL' }
168
+ },
169
+ {
170
+ key = ' LeftArrow' ,
171
+ mods = ' ALT' ,
172
+ action = action .SendKey { key = ' B' , mods = ' CTRL' }
173
+ },
174
+ {
175
+ key = ' RightArrow' ,
176
+ mods = ' ALT' ,
177
+ action = action .SendKey { key = ' F' , mods = ' CTRL' }
178
+ },
179
+ {
180
+ key = ' LeftArrow' ,
181
+ mods = ' CMD' ,
182
+ action = action .SendKey { key = ' A' , mods = ' CTRL' }
183
+ },
184
+ {
185
+ key = ' RightArrow' ,
186
+ mods = ' CMD' ,
187
+ action = action .SendKey { key = ' E' , mods = ' CTRL' }
188
+ },
189
+ -- {
190
+ -- key = 'z',
191
+ -- mods = 'CMD',
192
+ -- action = action.SendKey { key = 'x+u', mods = 'CTRL' }
193
+ -- },
150
194
151
195
}
152
196
Original file line number Diff line number Diff line change 103
103
//
104
104
"workbench.editor.closeOnFileDelete" : true ,
105
105
"workbench.editor.revealIfOpen" : true ,
106
- "workbench.iconTheme" : " catppuccin-frappe " ,
106
+ "workbench.iconTheme" : " catppuccin-latte " ,
107
107
"workbench.list.openMode" : " singleClick" ,
108
108
"workbench.preferredDarkColorTheme" : " Catppuccin Frappé" ,
109
109
"workbench.preferredLightColorTheme" : " Catppuccin Latte" ,
You can’t perform that action at this time.
0 commit comments