dotfiles VS debugpy

Compare dotfiles vs debugpy and see what are their differences.

dotfiles

Configuration files (by pianocomposer321)

debugpy

An implementation of the Debug Adapter Protocol for Python (by microsoft)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
dotfiles debugpy
2 18
1 1,659
- 3.0%
0.0 7.9
over 1 year ago about 20 hours ago
Lua Python
- GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

dotfiles

Posts with mentions or reviews of dotfiles. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-12-22.
  • kanagawa.nvim if gruvbox and tokyonight had a baby...
    8 projects | /r/neovim | 22 Dec 2021
    I think it's probably https://github.com/akinsho/bufferline.nvim. Personally, I really like https://github.com/nanozuki/tabby.nvim to do something similar, except without a buffer list: https://github.com/pianocomposer321/dotfiles/blob/master/config/.config/nvim/lua/plugins/tabby.lua.
  • Neovim Python Dev Config
    7 projects | /r/neovim | 20 Oct 2021
    You can check out my dotfiles at https://github.com/pianocomposer321/dotfiles if you want ;-).

debugpy

Posts with mentions or reviews of debugpy. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-26.
  • How to debug Django inside a Docker container with VSCode
    6 projects | dev.to | 26 Jan 2024
    debugpy description from it's repository:
  • Show HN: Mutable.ai – Turn your codebase into a Wiki
    14 projects | news.ycombinator.com | 8 Jan 2024
    I'd love to see what it can do with https://github.com/microsoft/debugpy - and especially how it would handle vendored dependencies.
  • Need help setting working directory of my debugger for python in neovim
    4 projects | /r/neovim | 29 May 2023
    I read that nvim-dap-python uses debugpy which has all these configuration parameters of which one of them is `cwd` which represents the "absolute path to the working directory of the program being debugged".
  • nvim-dap closes my remote session each time I try to restart - how do I make it stop?
    1 project | /r/neovim | 25 Apr 2023
    Hey all, I'm not sure if this is normal or not but, when debugging with nvim-dap, nvim-dap-ui, and nvim-dap-python (which uses debugpy) over a remote session, dap runs exactly once and then closes the entire process. This even happens when I just call `require("dap").restart()`. It's pretty frustrating to deal with and is not something that I was used to when I used to debug with vimspector, which let me restart the debug remotely as many times as I wanted without killing the application that I was connected to. Is this happening for anyone else? How do I disable it? I didn't see anything in debugpy's configuration options. I'm rereading dap's vim :help but haven't found any mention of auto-close / terminate logic yet.
  • What has been people's experience with nvim-dap? Or integrating the debugging experience within Neovim itself?
    5 projects | /r/neovim | 23 Apr 2023
    -- Debug adapter plug-in. Debug anything in Neovim { "mfussenegger/nvim-dap", config = function() vim.keymap.set("n", "d", ":DapContinue") vim.keymap.set("n", "dl", ":DapStepInto") vim.keymap.set("n", "dj", ":DapStepOver") vim.keymap.set("n", "dh", ":DapStepOut") vim.keymap.set("n", "dz", ":ZoomWinTabToggle") vim.keymap.set( "n", "dgt", -- dg as in debu[g] [t]race ":lua require('dap').set_log_level('TRACE')" ) vim.keymap.set( "n", "dge", -- dg as in debu[g] [e]dit function() vim.cmd(":edit " .. vim.fn.stdpath('cache') .. "/dap.log") end ) vim.keymap.set("n", "", ":DapStepOut") vim.keymap.set("n", "", ":DapStepOver") vim.keymap.set("n", "", ":DapStepInto") vim.keymap.set( "n", "d-", function() require("dap").restart() end ) vim.keymap.set( "n", "d_", function() require("dap").terminate() require("dapui").close() end ) end, lazy = true, }, -- A default "GUI" front-end for nvim-dap { "rcarriga/nvim-dap-ui", config = function() require("dapui").setup() -- Note: Added this dd duplicate of because somehow the -- mapping keeps getting reset each time I restart nvim-dap. Annoying but whatever. -- vim.keymap.set( "n", "dd", function() require("dapui").open() -- Requires nvim-dap-ui vim.cmd[[DapContinue]] -- Important: This will lazy-load nvim-dap end ) end, dependencies = { "mfussenegger/nvim-dap", "mfussenegger/nvim-dap-python", -- Optional adapter for Python }, }, -- TODO: Make sure that debugpy is installed. Otherwise, disable -- Reference: https://github.com/mfussenegger/nvim-dap-python#installation -- { "mfussenegger/nvim-dap-python", config = function() require("dap-python").setup("/path/to/python/here") -- XXX: Replace this with your preferred Python, if wanted -- An example configuration to launch any Python file, via Houdini -- table.insert( -- require("dap").configurations.python, -- { -- type = "python", -- request = "launch", -- name = "Launch Via hython", -- program = "${file}", -- python = "/opt/hfs19.5.569/bin/hython" -- -- ... more options, see https://github.com/microsoft/debugpy/wiki/Debug-configuration-settings -- } -- ) end, dependencies = { "mfussenegger/nvim-dap", "nvim-treesitter/nvim-treesitter", }, }, -- Remember nvim-dap breakpoints between sessions, ``:PBToggleBreakpoint`` { "Weissle/persistent-breakpoints.nvim", config = function() require("persistent-breakpoints").setup{ load_breakpoints_event = { "BufReadPost" } } vim.keymap.set("n", "db", ":PBToggleBreakpoint") end, }
  • Unable to view complex numpy arrays in Dataviewer in VSCode
    2 projects | /r/vscode | 10 Feb 2023
    After testing I have the same situation. I reported this issue on GitHub, you can follow up.
  • How to setup neotest with neotest-python and dap?
    3 projects | /r/neovim | 15 Dec 2022
    vim.fn.sign_define('DapBreakpoint', {text='🛑', texthl='', linehl='', numhl=''}) dap.configurations.python = { { -- The first three options are required by nvim-dap type = 'python'; -- the type here established the link to the adapter definition: `dap.adapters.python` request = 'launch'; name = "Launch file"; -- Options below are for debugpy, see https://github.com/microsoft/debugpy/wiki/Debug-configuration-settings for supported options program = "${file}"; -- This configuration will launch the current file if used. pythonPath = function() -- debugpy supports launching an application with a different interpreter then the one used to launch debugpy itself. -- The code below looks for a `venv` or `.venv` folder in the current directly and uses the python within. -- You could adapt this - to for example use the `VIRTUAL_ENV` environment variable. return os.getenv("VIRTUAL_ENV") .. "/bin/python" or '/usr/bin/env python' end; }, }
  • How does mfussenegger / nvim-dap-python with nvim-dap runs the code in venv?
    1 project | /r/neovim | 30 Oct 2022
  • What Python debugger do you use?
    2 projects | /r/Python | 2 Sep 2022
  • Any functionality like VS Code debugger from command line (for Python)?
    2 projects | /r/learnpython | 31 Aug 2022
    You should take a look at DAP (Debug Adapter Protocol). There exist a Python module implementing this protocol (debugpy) and you can probably find some client applications that can hook into it (like this neovim plugin).

What are some alternatives?

When comparing dotfiles and debugpy you can also consider the following projects:

tabby.nvim - A declarative, highly configurable, and neovim style tabline plugin. Use your nvim tabs as a workspace multiplexer!

nvim-dap-python - An extension for nvim-dap, providing default configurations for python and methods to debug individual test methods or classes.

kanawaga.vim - Vim dark colorscheme inspired by the colors of the famous painting by Katsushika Hokusai.

nvim-dap - Debug Adapter Protocol client implementation for Neovim

ultisnips - UltiSnips - The ultimate snippet solution for Vim. Send pull requests to SirVer/ultisnips!

python-lsp-server - Fork of the python-language-server project, maintained by the Spyder IDE team and the community

mason-nvim-dap.nvim

emacs-theme-gruvbox - Gruvbox is a retro groove color scheme for Emacs. Port of the Vim version.

nvim-config

bufferline.nvim - A snazzy bufferline for Neovim

pdbpp - pdb++, a drop-in replacement for pdb (the Python debugger)