mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
feat: wezterm and starship config
This commit is contained in:
parent
d780bab0b1
commit
b8ce095489
4 changed files with 255 additions and 4 deletions
33
home/wezterm.lua
Normal file
33
home/wezterm.lua
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
local wezterm = require("wezterm")
|
||||
|
||||
config = wezterm.config_builder()
|
||||
|
||||
config = {
|
||||
-- Windows
|
||||
automatically_reload_config = true,
|
||||
enable_tab_bar = false,
|
||||
window_close_confirmation = "NeverPrompt",
|
||||
window_decorations = "RESIZE", -- disable title bar, enable resize
|
||||
default_cursor_style = "BlinkingBar",
|
||||
|
||||
-- Appearance
|
||||
color_scheme = "Tokyo Night",
|
||||
font = wezterm.font("D2CodingLigature Nerd Font"),
|
||||
font_size = 16,
|
||||
background = {
|
||||
{
|
||||
source = { Color = "#282c35" },
|
||||
width = "100%",
|
||||
height = "100%",
|
||||
opacity = 0.95,
|
||||
},
|
||||
},
|
||||
window_padding = {
|
||||
left = 2,
|
||||
right = 2,
|
||||
top = 0,
|
||||
bottom = 0,
|
||||
},
|
||||
}
|
||||
|
||||
return config
|
||||
Loading…
Add table
Add a link
Reference in a new issue