chore: font size 14
parent
515f15eaad
commit
ade70b87ad
|
@ -3,7 +3,7 @@ include mocha.conf
|
||||||
|
|
||||||
# https://sw.kovidgoyal.net/kitty/conf/#fonts
|
# https://sw.kovidgoyal.net/kitty/conf/#fonts
|
||||||
font_family SF Mono
|
font_family SF Mono
|
||||||
font_size 16.0
|
font_size 14.0
|
||||||
# kitty +list-fonts --psnames
|
# kitty +list-fonts --psnames
|
||||||
|
|
||||||
modify_font cell_height 120%
|
modify_font cell_height 120%
|
||||||
|
@ -31,7 +31,7 @@ initial_window_height 480
|
||||||
tab_bar_align center
|
tab_bar_align center
|
||||||
|
|
||||||
# https://sw.kovidgoyal.net/kitty/conf/#color-scheme
|
# https://sw.kovidgoyal.net/kitty/conf/#color-scheme
|
||||||
background_opacity 0.9
|
background_opacity 0.8
|
||||||
|
|
||||||
# https://sw.kovidgoyal.net/kitty/conf/#advanced
|
# https://sw.kovidgoyal.net/kitty/conf/#advanced
|
||||||
shell_integration disabled
|
shell_integration disabled
|
||||||
|
|
|
@ -93,14 +93,22 @@ end
|
||||||
vim.opt.rtp:prepend(lazypath)
|
vim.opt.rtp:prepend(lazypath)
|
||||||
|
|
||||||
require("lazy").setup({
|
require("lazy").setup({
|
||||||
-- Colorscheme
|
-- Colorschemes
|
||||||
-- https://github.com/loctvl842/monokai-pro.nvim
|
-- https://github.com/catppuccin/nvim
|
||||||
{
|
{
|
||||||
"loctvl842/monokai-pro.nvim",
|
"catppuccin/nvim",
|
||||||
|
name = "catppuccin",
|
||||||
|
lazy = false,
|
||||||
|
priority = 1000,
|
||||||
config = function()
|
config = function()
|
||||||
require("monokai-pro").setup()
|
require("catppuccin").setup({
|
||||||
|
flavour = "mocha",
|
||||||
|
integrations = {
|
||||||
|
mini = true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
vim.cmd("colorscheme monokai-pro")
|
vim.cmd("colorscheme catppuccin")
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ return {
|
||||||
font = wezterm.font({
|
font = wezterm.font({
|
||||||
family = "SF Mono",
|
family = "SF Mono",
|
||||||
}),
|
}),
|
||||||
font_size = 16.0,
|
font_size = 14.0,
|
||||||
line_height = 1.2,
|
line_height = 1.2,
|
||||||
use_cap_height_to_scale_fallback_fonts = true,
|
use_cap_height_to_scale_fallback_fonts = true,
|
||||||
color_scheme = "Catppuccin Mocha",
|
color_scheme = "Catppuccin Mocha",
|
||||||
|
@ -21,8 +21,8 @@ return {
|
||||||
},
|
},
|
||||||
hide_tab_bar_if_only_one_tab = true,
|
hide_tab_bar_if_only_one_tab = true,
|
||||||
tab_bar_at_bottom = true,
|
tab_bar_at_bottom = true,
|
||||||
window_background_opacity = 0.9,
|
window_background_opacity = 0.8,
|
||||||
text_background_opacity = 0.8,
|
text_background_opacity = 0.7,
|
||||||
macos_window_background_blur = 20,
|
macos_window_background_blur = 15,
|
||||||
audible_bell = "Disabled",
|
audible_bell = "Disabled",
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"cv18": true,
|
"cv18": true,
|
||||||
"cv20": true
|
"cv20": true
|
||||||
},
|
},
|
||||||
"buffer_font_size": 16,
|
"buffer_font_size": 14,
|
||||||
"soft_wrap": "preferred_line_length",
|
"soft_wrap": "preferred_line_length",
|
||||||
"autosave": "on_focus_change"
|
"autosave": "on_focus_change"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue