kickstart.nvim/README.md

29 lines
964 B
Markdown
Raw Normal View History

2023-04-10 18:20:13 +05:30
# Python Devbox with kickstart.nvim
2023-04-10 15:33:22 +05:30
### Python Devbox
2023-04-10 18:49:24 +05:30
Prepare your python development environment using neovim with kickstarter.nvim config
2023-04-10 15:34:23 +05:30
This will have all the plugins in kickstart.nvim installed in it. I have added python debug support and neotree as extra
2023-04-10 15:33:22 +05:30
```
docker build -t devbox -f devbox.Dockerfile .
# To run the container in background
docker run -td --name mydevbox -v $(pwd):/workspaces devbox
2023-04-10 18:20:13 +05:30
# -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
2023-04-10 15:33:22 +05:30
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
2023-04-10 18:22:29 +05:30
shift + F11 - step out
2023-04-10 15:33:22 +05:30
```
2023-04-10 18:48:40 +05:30
This repo is forked from Kickstarter.nvim
For nvim configuration refer : https://github.com/nvim-lua/kickstart.nvim