Merge branch 'master' of https://github.com/MaasOedipa/kickstart.nvim
Merges
This commit is contained in:
commit
1be2e797a5
4
init.lua
4
init.lua
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
}
|
||||
Loading…
Reference in New Issue