From eb3a6c75b2e37d588730abcc2b44c7a1ad8bd2e8 Mon Sep 17 00:00:00 2001 From: Von Random Date: Sat, 21 Jan 2023 03:43:23 +0200 Subject: [PATCH] wezterm: fonts; nvim: fonts and lualine --- nvim/lua/plugins.lua | 8 ++++++-- nvim/lua/settings.lua | 2 +- wezterm.lua | 3 ++- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index 17deb2b..1f8593c 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -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', '.', 'Telescope find_files') @@ -32,7 +37,6 @@ map('n', ',', 'Telescope buffers') 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 diff --git a/nvim/lua/settings.lua b/nvim/lua/settings.lua index 8f9c074..1aa9664 100644 --- a/nvim/lua/settings.lua +++ b/nvim/lua/settings.lua @@ -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' diff --git a/wezterm.lua b/wezterm.lua index d555a3b..74da51b 100644 --- a/wezterm.lua +++ b/wezterm.lua @@ -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,