From 4f8d495191fc5b69fbe28ec39b54f79dafbd43bf Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 25 Nov 2022 17:01:32 +0100 Subject: [PATCH] nvim: Switch Navigator plugin to use wezterm Using wezterm in current implementation of Navigator.nvim plugin - somewhat of a HACK until the final implementation exists in the plugin. --- nvim/.config/nvim/lua/plugins.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/.config/nvim/lua/plugins.lua b/nvim/.config/nvim/lua/plugins.lua index 5bc3c37..60690b8 100644 --- a/nvim/.config/nvim/lua/plugins.lua +++ b/nvim/.config/nvim/lua/plugins.lua @@ -22,7 +22,7 @@ require("packer").startup(function() -- essential use { 'numToStr/Navigator.nvim', - config = function() require('Navigator').setup() end + config = function() require('Navigator').setup({ mux = "wezterm" }) 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