Skip to content

anurag3301/nvim-platformio.lua

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

93 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nvim-platfromio.lua

PlatformIO wrapper for Neovim written in Lua.

Demo

pio.mp4

Try the plugin with this minimal standalone config without making any changes to your current plugin. Very useful if you facing error while installation or using

wget https://raw.githubusercontent.com/anurag3301/nvim-platformio.lua/main/minimal_config.lua
nvim -u minimal_config.lua

# Now run :Pioinit

Installation

PlatformIO Core

Check the install instructions on the PlatformIO docs

Plugin

Install the plugin using packer

use {
    'anurag3301/nvim-platformio.lua',
    requires = {
        {'akinsho/nvim-toggleterm.lua'},
        {'nvim-telescope/telescope.nvim'},
        {'nvim-lua/plenary.nvim'},
    }
}

Or Install the plugin using lazy

return {
    "anurag3301/nvim-platformio.lua",
    dependencies = {
        { "akinsho/nvim-toggleterm.lua" },
        { "nvim-telescope/telescope.nvim" },
        { "nvim-lua/plenary.nvim" },
    },
}

Usage :h PlatformIO

Lazy loading

It's possible to lazy load the plugin using Lazy.nvim, this will load the plugins only when it is needed, to enable lazy loading, add this plugin spec to your config.

cmd = {
    "Pioinit",
    "Piorun",
    "Piocmd",
    "Piolib",
    "Piomon",
    "Piodebug",
    "Piodb",
},

TODO

  • Syntax Highlighted Json Preview
  • Connect Piodebug with DAP

About

PlatformIO wrapper for neovim written in lua

Resources

License

Stars

Watchers

Forks