From 3b7c24c676f8fd6732dbb257b7990f6832d34b36 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 16 Dec 2022 23:24:36 +0100 Subject: [PATCH] nvim: Switch to official Navigator branch After the wezterm navigation changes have been merged into main we can now use the upstream package again for navigating easily even in wezterm. --- nvim/.config/nvim/lua/plugins.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/nvim/.config/nvim/lua/plugins.lua b/nvim/.config/nvim/lua/plugins.lua index bee0e73..45ff9f5 100644 --- a/nvim/.config/nvim/lua/plugins.lua +++ b/nvim/.config/nvim/lua/plugins.lua @@ -27,10 +27,9 @@ require("packer").startup(function() -- vim plugs -- essential use { - 'marty-oehme/Navigator.nvim', - branch = 'feat/add-wezterm-navigation', + 'numToStr/Navigator.nvim', config = function() require('Navigator').setup() end - } -- allow seamless navigation between vim buffers and tmux splits + } -- allow seamless navigation between vim buffers and tmux/wezterm 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 use 'ojroques/vim-oscyank' -- yank from *anywhere* (even ssh session) to clipboard, using :OSCYank