This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import type { | |
| RemoteCommand, | |
| RemoteForm, | |
| RemoteFormInput, | |
| RemoteQueryFunction | |
| } from "@sveltejs/kit"; | |
| import { command, form, query } from "$app/server"; | |
| import { Effect, Schema } from "effect"; | |
| /** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local wezterm = require("wezterm") | |
| local config = {} | |
| if wezterm.config_builder then | |
| config = wezterm.config_builder() | |
| end | |
| config.use_fancy_tab_bar = false | |
| config.hide_tab_bar_if_only_one_tab = true | |
| config.font_size = 14.0 |