mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
use yanky.nvim to replace vim-yoink (#168)
This commit is contained in:
13
lua/config/yanky.lua
Normal file
13
lua/config/yanky.lua
Normal file
@@ -0,0 +1,13 @@
|
||||
require("yanky").setup({
|
||||
ring = {
|
||||
history_length = 50,
|
||||
storage = "memory",
|
||||
},
|
||||
preserve_cursor_position = {
|
||||
enabled = false,
|
||||
},
|
||||
})
|
||||
|
||||
-- cycle through the yank history, only work after paste
|
||||
vim.keymap.set("n", "[y", "<Plug>(YankyCycleForward)")
|
||||
vim.keymap.set("n", "]y", "<Plug>(YankyCycleBackward)")
|
||||
@@ -208,10 +208,14 @@ packer.startup {
|
||||
-- Show undo history visually
|
||||
use { "simnalamburt/vim-mundo", cmd = { "MundoToggle", "MundoShow" } }
|
||||
|
||||
-- better UI for some nvim actions
|
||||
use {'stevearc/dressing.nvim'}
|
||||
|
||||
-- Manage your yank history
|
||||
if vim.g.is_win or vim.g.is_mac then
|
||||
use { "svermeulen/vim-yoink", event = "VimEnter" }
|
||||
end
|
||||
use({
|
||||
"gbprod/yanky.nvim",
|
||||
config = [[require('config.yanky')]]
|
||||
})
|
||||
|
||||
-- Handy unix command inside Vim (Rename, Move etc.)
|
||||
use { "tpope/vim-eunuch", cmd = { "Rename", "Delete" } }
|
||||
|
||||
Reference in New Issue
Block a user