wezterm: fonts; nvim: fonts and lualine
This commit is contained in:
parent
8b570a36ce
commit
eb3a6c75b2
3 changed files with 9 additions and 4 deletions
|
@ -22,7 +22,12 @@ end
|
|||
if require('packer_init').init(plugins) then return end
|
||||
|
||||
--[[ plugins config ]]
|
||||
require('lualine').setup()
|
||||
require('lualine').setup{
|
||||
options = {
|
||||
icons_enabled = false,
|
||||
component_separators = { left = '•', right = '•' }
|
||||
}
|
||||
}
|
||||
|
||||
--[[ telescope maps ]]
|
||||
map('n', '<Leader>.', '<cmd>Telescope find_files<CR>')
|
||||
|
@ -32,7 +37,6 @@ map('n', '<Leader>,', '<cmd>Telescope buffers<CR>')
|
|||
vim.o.bg = 'dark'
|
||||
vim.o.termguicolors = true
|
||||
|
||||
--vim.g.gruvbox_transp_bg = 1
|
||||
vim.g.gruvbox_plugin_hi_groups = 1
|
||||
vim.g.gruvbox_filetype_hi_groups = 1
|
||||
|
||||
|
|
|
@ -28,4 +28,4 @@ vim.o.title = true
|
|||
vim.o.titlestring = '[%{hostname()}] %t - neovim'
|
||||
vim.o.statusline = '[%F] %R%H%W%M %=[%{&fenc}/%{&ff}] %y [%4l/%L:%3v]'
|
||||
|
||||
vim.o.guifont = 'JetBrainsMono Nerd Font:h14'
|
||||
vim.o.guifont = 'JetBrains Mono:h12'
|
||||
|
|
|
@ -72,7 +72,8 @@ wt.on('webinar', function(window) window:set_config_overrides(webinar_overrides)
|
|||
return {
|
||||
audible_bell = 'Disabled',
|
||||
font_size = set_fontsize(),
|
||||
font = wt.font 'JetBrainsMono Nerd Font',
|
||||
font = wt.font 'Cascadia Code PL',
|
||||
harfbuzz_features = { 'ss01=1', 'ss19=1' },
|
||||
color_scheme = default_theme,
|
||||
cursor_blink_rate = 0,
|
||||
check_for_updates = false,
|
||||
|
|
Loading…
Reference in a new issue