https://github.com/iharkatkavets/micropython.nvim
A Neovim plugin for embedded development with MicroPython.
https://github.com/iharkatkavets/micropython.nvim
micropython neovim neovim-plugin
Last synced: 2 months ago
JSON representation
A Neovim plugin for embedded development with MicroPython.
- Host: GitHub
- URL: https://github.com/iharkatkavets/micropython.nvim
- Owner: iharkatkavets
- Created: 2025-04-06T16:23:07.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-13T18:35:39.000Z (about 1 year ago)
- Last Synced: 2025-10-10T15:05:05.867Z (8 months ago)
- Topics: micropython, neovim, neovim-plugin
- Language: Lua
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# micropython.nvim
## What Is micropython.nvim?
`micropython.nvim` - is neovim plugin. Currently is in development
## Micropython Table of Contents
- [Getting Started](#getting-started)
## Getting Started
### Requirement dependencies
The plugin uses [`mpremote`](https://docs.micropython.org/en/latest/index.html) tool to communicated with the device. It's required to have the tool installed to use the plugin.
### Installation
Using [lazy.nvim](https://github.com/folke/lazy.nvim)
```lua
-- init.lua:
{
'iharkatkavets/micropython.nvim', branch = 'main',
cmd = { 'MPInitPicoProj', 'MPConnect', 'MPRun', 'MPSelectPort', 'MPRunCurrent', 'MPUpload', 'MPLog' },
opts = {
port = '/dev/cu.usbmodem101',
},
}
-- plugins/micropython.lua:
return {
{
'iharkatkavets/micropython.nvim', branch = 'main',
cmd = { 'MPInitPicoProj', 'MPConnect', 'MPRun', 'MPSelectPort', 'MPRunCurrent', 'MPUpload', 'MPLog' },
opts = {
port = '/dev/cu.usbmodem101',
},
},
}
```
## Contributing
All contributions are welcome! Just open a pull request.