A plugin for neovim to render pandas dataframes in nvim-dap using the power of visidata.
# Using: lazy
{
"Willem-J-an/visidata.nvim",
dependencies = {
"mfussenegger/nvim-dap",
"rcarriga/nvim-dap-ui"
},
config = function()
local dap = require("dap")
dap.defaults.fallback.external_terminal = {
command = "<Path to your terminal of choice>",
args = { "--hold", "--command" },
}
vim.keymap.set("v", "<leader>vp", require('visidata').visualize_pandas_df, { desc = "[v]isualize [p]andas df" })
end,
}
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "externalTerminal"
}