chore: Update wezterm and zed
ee90bc03
3 file(s) · +29 −37
| 1 | - | local wezterm = require 'wezterm' |
|
| 2 | - | ||
| 3 | - | local config = {} |
|
| 4 | - | ||
| 5 | - | if wezterm.config_builder then |
|
| 6 | - | config = wezterm.config_builder() |
|
| 7 | - | end |
|
| 8 | - | ||
| 9 | - | --config.color_scheme = "Poimandres" |
|
| 10 | - | config.color_scheme = 'Black Metal (Bathory) (base16)' |
|
| 11 | - | ||
| 12 | - | config.font = wezterm.font('BerkeleyMono Nerd Font') |
|
| 13 | - | config.font_size = 14 |
|
| 14 | - | ||
| 15 | - | ||
| 16 | - | config.enable_tab_bar = false |
|
| 17 | - | config.window_decorations = "RESIZE" |
|
| 18 | - | config.window_padding = { |
|
| 19 | - | left = 10, |
|
| 20 | - | right = 10, |
|
| 21 | - | top = 4, |
|
| 22 | - | bottom = 4 |
|
| 23 | - | } |
|
| 24 | - | ||
| 25 | - | config.initial_cols = 85 |
|
| 26 | - | config.initial_rows = 30 |
|
| 27 | - | ||
| 28 | - | ||
| 29 | - | return config |
| 6 | 6 | config = wezterm.config_builder() |
|
| 7 | 7 | end |
|
| 8 | 8 | ||
| 9 | - | --config.color_scheme = "Poimandres" |
|
| 10 | - | config.color_scheme = 'Black Metal (Bathory) (base16)' |
|
| 9 | + | config.color_scheme = 'Darkmatter' |
|
| 10 | + | config.color_schemes = { |
|
| 11 | + | ["Darkmatter"] = { |
|
| 12 | + | foreground = "#ffffff", |
|
| 13 | + | background = "#121113", |
|
| 14 | + | cursor_fg = "#121113", |
|
| 15 | + | cursor_bg = "#ffffff", |
|
| 16 | + | cursor_border = "#ffffff", |
|
| 17 | + | selection_fg = "#000000", |
|
| 18 | + | selection_bg = "#222222", |
|
| 19 | + | ansi = { |
|
| 20 | + | "#121113", "#5f8787", "#fbcb97", "#e78a53", |
|
| 21 | + | "#888888", "#999999", "#aaaaaa", "#c1c1c1" |
|
| 22 | + | }, |
|
| 23 | + | brights = { |
|
| 24 | + | "#333333", "#5f8787", "#fbcb97", "#e78a53", |
|
| 25 | + | "#888888", "#999999", "#aaaaaa", "#c1c1c1" |
|
| 26 | + | } |
|
| 27 | + | } |
|
| 28 | + | } |
|
| 11 | 29 | ||
| 12 | 30 | config.font = wezterm.font('BerkeleyMono Nerd Font') |
|
| 13 | 31 | config.font_size = 14 |
|
| 24 | 42 | ||
| 25 | 43 | config.initial_cols = 85 |
|
| 26 | 44 | config.initial_rows = 30 |
|
| 45 | + | ||
| 46 | + | -- config.default_prog = { '/opt/homebrew/bin/nu' } |
|
| 47 | + | ||
| 27 | 48 | ||
| 28 | 49 | ||
| 29 | 50 | return config |
|
| 128 | 128 | "blinking": "terminal_controlled", |
|
| 129 | 129 | "copy_on_select": true, |
|
| 130 | 130 | "font_family": "BerkeleyMono Nerd Font", |
|
| 131 | - | "font_size": 14, |
|
| 131 | + | "font_size": 13, |
|
| 132 | 132 | "line_height": "standard", |
|
| 133 | 133 | "working_directory": "current_project_directory", |
|
| 134 | 134 | "button": false |
|
| 166 | 166 | "prettier": { "allowed": false } |
|
| 167 | 167 | } |
|
| 168 | 168 | }, |
|
| 169 | - | "formatter": { |
|
| 170 | - | "language_server": { |
|
| 171 | - | "name": "biome" |
|
| 172 | - | } |
|
| 173 | - | }, |
|
| 169 | + | // "formatter": { |
|
| 170 | + | // "language_server": { |
|
| 171 | + | // "name": "biome" |
|
| 172 | + | // } |
|
| 173 | + | // }, |
|
| 174 | 174 | "lsp": { |
|
| 175 | 175 | "biome": { |
|
| 176 | 176 | "settings": { |
|