2023-04-10 18:48:40 +05:30
2023-04-10 17:19:21 +05:30
2022-06-23 23:35:53 -04:00
2023-04-10 15:28:22 +05:30
2023-04-09 11:29:42 -04:00
2022-06-25 21:51:44 -04:00
2023-04-10 18:48:40 +05:30

Python Devbox with kickstart.nvim

Python Devbox

There is a docker file available , using that you can create your development environment 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

Description
A launch point for your personal nvim configuration
Readme 170 MiB
Languages
Lua 100%