mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
refactor: migrate nix-darwin config to a flake-parts dendritic layout
This commit is contained in:
parent
f80b0b0d4f
commit
09801ac429
84 changed files with 1029 additions and 687 deletions
|
|
@ -1,43 +0,0 @@
|
|||
local wezterm = require("wezterm")
|
||||
|
||||
config = wezterm.config_builder()
|
||||
|
||||
config = {
|
||||
-- Windows
|
||||
automatically_reload_config = true,
|
||||
use_fancy_tab_bar = true,
|
||||
hide_tab_bar_if_only_one_tab = true,
|
||||
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 = 18,
|
||||
background = {
|
||||
{
|
||||
source = { Color = "#282c35" },
|
||||
width = "100%",
|
||||
height = "100%",
|
||||
opacity = 0.95,
|
||||
},
|
||||
},
|
||||
window_padding = {
|
||||
left = 0,
|
||||
right = 0,
|
||||
top = 0,
|
||||
bottom = 0,
|
||||
},
|
||||
|
||||
-- Keymappings
|
||||
keys = {
|
||||
{
|
||||
key = "P",
|
||||
mods = "SUPER",
|
||||
action = wezterm.action.ActivateCommandPalette,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
return config
|
||||
Loading…
Add table
Add a link
Reference in a new issue