diff --git a/nvim/.config/nvim/lua/plugins.lua b/nvim/.config/nvim/lua/plugins.lua index 60690b8..c2990d4 100644 --- a/nvim/.config/nvim/lua/plugins.lua +++ b/nvim/.config/nvim/lua/plugins.lua @@ -21,8 +21,9 @@ require("packer").startup(function() -- vim plugs -- essential use { - 'numToStr/Navigator.nvim', - config = function() require('Navigator').setup({ mux = "wezterm" }) end + '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 use 'RRethy/vim-illuminate' -- highlight other occurences of the word under cursor 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 },