A launch point for your personal nvim configuration
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
SamPosh a07d5a008d
Update README.md
2 years ago
.github/ISSUE_TEMPLATE
doc feat: move to lazy.nvim package manager and add first plugins (#178) 2 years ago
lua Update debug.lua 2 years ago
.gitignore feat: move to lazy.nvim package manager and add first plugins (#178) 2 years ago
.stylua.toml
LICENSE.md
README.md Update README.md 2 years ago
devbox.Dockerfile Create devbox.Dockerfile 2 years ago
init.lua python debug added 2 years ago

README.md

Python Devbox with kickstart.nvim

Python Devbox

Prepare your python development environment using neovim with kickstarter.nvim config This will have all the plugins in kickstart.nvim installed in it. I have added python debug support and neotree as extra

docker build -t devbox -f devbox.Dockerfile .

# To run the container in background

docker run -td --name mydevbox -v $(pwd):/workspaces devbox
# -v $(pwd) is used to create volume inside container . IF you run from the folder where your source code is available then your container will have source code in it. You can use this as development box

docker exec -it mydevbox /bin/bash
# To enter into devbox 

# You can do debug using standard keys used in vscode
F5 - to start debug
F9 - to toggle debug breakpointer
F10 - step over
F11 - step into
shift + F11 - step out

This repo is forked from Kickstarter.nvim For nvim configuration refer : https://github.com/nvim-lua/kickstart.nvim