From 788775bbee10a82ed38a19947e6378f9b5c93436 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Tue, 4 Jan 2022 22:02:55 +0100 Subject: [PATCH] nvim: Add oscyank to yank from anywhere Added oscyank plugin which allows, through the `:OSCYank` command, to put stuff into your local clipboard from *anywhere*, even through remote ssh sessions and so on. Requires a supported terminal emulator but honestly, most semi well-known ones are on the list already. --- nvim/.config/nvim/lua/plugins.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/nvim/.config/nvim/lua/plugins.lua b/nvim/.config/nvim/lua/plugins.lua index a9fac2d..119baa6 100644 --- a/nvim/.config/nvim/lua/plugins.lua +++ b/nvim/.config/nvim/lua/plugins.lua @@ -25,6 +25,7 @@ require("packer").startup(function() } -- 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 + use 'ojroques/vim-oscyank' -- yank from *anywhere* (even ssh session) to clipboard, using :OSCYank use 'ggandor/lightspeed.nvim' -- jump between letters with improved fFtT quicksearch, mimics sneak -- use { -- weird errors currently -- 'lukas-reineke/indent-blankline.nvim', -- show a vertical line for each indentation