mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-12-07 09:35:37 -08:00
7 lines
139 B
Lua
7 lines
139 B
Lua
vim.api.nvim_create_autocmd('User', {
|
|
pattern = 'TelescopePreviewerLoaded',
|
|
callback = function(args)
|
|
vim.wo.wrap = true
|
|
end,
|
|
})
|