From dff4308b4d6caeb0cead1cac7297f5bd19a55ef5 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 25 Nov 2022 17:01:32 +0100 Subject: [PATCH 1/2] nvim: Change to Navigator fork supporting wezterm Changed to personal fork of Navigator which supports wezterm for the time being - until the changes are merged in some fashion upstream. --- nvim/.config/nvim/lua/plugins.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nvim/.config/nvim/lua/plugins.lua b/nvim/.config/nvim/lua/plugins.lua index 5bc3c37..c2990d4 100644 --- a/nvim/.config/nvim/lua/plugins.lua +++ b/nvim/.config/nvim/lua/plugins.lua @@ -21,7 +21,8 @@ require("packer").startup(function() -- vim plugs -- essential use { - 'numToStr/Navigator.nvim', + 'marty-oehme/Navigator.nvim', + branch = 'feat/add-wezterm-navigation', config = function() require('Navigator').setup() end } -- allow seamless navigation between vim buffers and tmux splits use 'jeffkreeftmeijer/vim-numbertoggle' -- toggles numbers to absolute for all buffers but the current which is relative From ea3779399752ea414400d1c42a547de85dac3aab Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Thu, 8 Dec 2022 13:05:36 +0100 Subject: [PATCH 2/2] wezterm: Default to dark theme and general font Generalized the font used from special ligaturized Iosevka to the standard Iosevka installed in the bootstrap process. Changed from a blindingly bright default color scheme to a nice dark one (Nord). --- wezterm/.config/wezterm/wezterm.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wezterm/.config/wezterm/wezterm.lua b/wezterm/.config/wezterm/wezterm.lua index 33a7923..24905df 100644 --- a/wezterm/.config/wezterm/wezterm.lua +++ b/wezterm/.config/wezterm/wezterm.lua @@ -64,12 +64,12 @@ return { tab_bar_at_bottom = true, window_padding = { left = 0, right = 0, top = 0, bottom = 0 }, - color_scheme = "Mexico Light (base16)", + color_scheme = "Nord (base16)", -- default_prog = {"nu"}, scrollback_lines = 10000, - font = wezterm.font('Liga Iosevka'), + font = wezterm.font('Iosevka'), line_height = 1.0, leader = { key = 'a', mods = 'CTRL', timeout_milliseconds = 1500 },