summaryrefslogtreecommitdiffstats
path: root/dotfiles/vim.lua
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/vim.lua')
-rw-r--r--dotfiles/vim.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/dotfiles/vim.lua b/dotfiles/vim.lua
index ff29d30..27fa722 100644
--- a/dotfiles/vim.lua
+++ b/dotfiles/vim.lua
@@ -221,3 +221,9 @@ require("lualine").setup {
221-- Snippets.nvim 221-- Snippets.nvim
222 222
223require("snippets").use_suggested_mappings() 223require("snippets").use_suggested_mappings()
224
225-- OSCyank
226
227-- Text yanked into the "t register gets copied using OSC52 escape sequences
228-- (e.g. goes through SSH)
229vim.cmd "autocmd TextYankPost * if v:event.regname is 't' | OSCYankReg t | endif"