mirror of
https://github.com/halfdan/dotfiles.git
synced 2026-05-09 04:16:20 +00:00
Update neovim, ghostty
This commit is contained in:
@@ -10,12 +10,15 @@ end)
|
||||
return {
|
||||
-- Font settings
|
||||
font = wezterm.font_with_fallback {
|
||||
'Hack Nerd Font Mono',
|
||||
'FiraCode Nerd Font Mono',
|
||||
'Jetbrains Mono'
|
||||
},
|
||||
font_size = 18,
|
||||
|
||||
color_scheme = "Gruvbox Dark",
|
||||
color_scheme = 'Monokai Dark (Gogh)',
|
||||
-- color_scheme = 'Kanagawa (Gogh)',
|
||||
-- color_scheme = "Gruvbox Dark",
|
||||
-- Tab bar
|
||||
show_tab_index_in_tab_bar = false,
|
||||
hide_tab_bar_if_only_one_tab = true,
|
||||
@@ -29,11 +32,29 @@ return {
|
||||
brightness = 0.7
|
||||
},
|
||||
window_frame = {
|
||||
font = wezterm.font { family = 'Noto Sans', weight = 'Regular' },
|
||||
font = wezterm.font { family = 'Hack Nerd Font Mono', weight = 'Regular' },
|
||||
},
|
||||
scrollback_lines = 26000,
|
||||
-- Keybindings
|
||||
-- disable_default_key_bindings = true,
|
||||
|
||||
enable_scroll_bar = false,
|
||||
window_padding = {
|
||||
right = 0,
|
||||
top = 0,
|
||||
bottom = 0,
|
||||
left = 0
|
||||
},
|
||||
leader = { key = 'b', mods = 'CMD', timeout_milliseconds = 2000 },
|
||||
keys = {
|
||||
{
|
||||
key = "|",
|
||||
mods = "LEADER|SHIFT",
|
||||
action = wezterm.action.SplitHorizontal { domain = "CurrentPaneDomain" },
|
||||
},
|
||||
{
|
||||
key = "-",
|
||||
mods = "LEADER",
|
||||
action = wezterm.action.SplitVertical { domain = "CurrentPaneDomain" },
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user