Merges
This commit is contained in:
MaasOedipa 2026-04-13 10:55:23 +02:00
commit 1be2e797a5
2 changed files with 18 additions and 1 deletions

View File

@ -869,7 +869,9 @@ require('lazy').setup({
-- Or use telescope!
-- In normal mode type `<space>sh` then write `lazy.nvim-plugin`
-- you can continue same window with `<space>sr` which resumes last telescope search
}, {
},
{
lockfile = vim.fn.stdpath("data") .. "/lazy-lock.json",
ui = {
-- If you are using a Nerd Font: set icons to an empty table which will use the
-- default lazy.nvim defined Nerd Font icons, otherwise define a unicode icons table

View File

@ -0,0 +1,15 @@
return {
'vinvolve/data-preview.nvim',
cmd = { 'DataPreview', 'DataPreviewStats' },
config = function()
local data_preview = require 'data-preview'
vim.api.nvim_create_user_command('DataPreview', data_preview.preview, {
nargs = 0,
desc = 'Preview data file (Parquet, Avro)',
})
vim.api.nvim_create_user_command('DataPreviewStats', data_preview.preview_stats, {
nargs = 0,
desc = 'Preview data file statistics (min, max, nulls, etc.)',
})
end,
}