• Stars
    star
    223
  • Rank 178,458 (Top 4 %)
  • Language
  • Created about 8 years ago
  • Updated 5 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Official plugin channel for micro

Micro Official Plugin Channel

This repository contains the 'channel.json' file which lists all official micro plugins. This is where the editor looks to search for plugins to install.

Plugins

Plugin Description Link 2.0 Support
comment Plugin to auto comment or uncomment lines https://github.com/micro-editor/comment-plugin βœ”οΈ (provided by default)
snippets Provides snippets functionality https://github.com/micro-editor/updated-plugins/tree/master/micro-snippets-plugin βœ”οΈ
go Provides gofmt and goimports support for Go files https://github.com/micro-editor/go-plugin βœ”οΈ
fish Provides fishfmt support for Fish files https://github.com/onodera-punpun/micro-fish-plugin βœ”οΈ
wc Plugin to count words/characters https://github.com/adamnpeace/micro-wc-plugin βœ”οΈ
fzf Provides fzf support for opening files https://github.com/samdmarshall/micro-fzf-plugin βœ”οΈ
pony Provides auto-indentation for Pony files https://github.com/Theodus/micro-pony-plugin βœ”οΈ
editorconfig EditorConfig Support for micro https://github.com/10sr/editorconfig-micro βœ”οΈ
crystal Provides various crystal tools for crystal files https://github.com/ColinRioux/micro-crystal βœ”οΈ
gotham-colors A colorscheme for code that never sleeps in Gotham City https://github.com/novln/micro-gotham-colors βœ”οΈ (provided by default)
misspell Plugin that corrects commonly misspelled words https://github.com/onodera-punpun/micro-misspell-plugin βœ”οΈ
monokai-dark A dark monokai colorscheme https://github.com/Theodus/micro-monokai-dark βœ”οΈ (provided by default)
manipulator Extend text manipulation abilities https://github.com/NicolaiSoeborg/manipulator-plugin βœ”οΈ
filemanager A file manager! https://github.com/NicolaiSoeborg/filemanager-plugin βœ”οΈ
vcs Mark changed lines in Git or Mercurial repositories https://bitbucket.org/dermetfan/micro-vcs βœ”οΈ (provided by default)
joinLines Plugin which joins selected lines or the following with the current https://github.com/Lisiadito/join-lines-plugin βœ”οΈ
bounce Plugin that implements nano-style smart home and bouncing the cursor between matching-brackets https://github.com/deusnefum/micro-bounce βœ”οΈ
quoter Plugin that allows you to add quotes or brackets around selected text https://github.com/deusnefum/micro-quoter βœ”οΈ
zigfmt Provides zig fmt integration for Zig files https://github.com/squeek502/micro-zigfmt βœ”οΈ
jlabbrev Provides backslash abbreviations from the julia prompt https://github.com/MasFlam/jlabbrev βœ”οΈ
nord-colors A set of dark and light colorschemes based on Nord https://github.com/KiranWells/micro-nord-tc-colors βœ”οΈ
autofmt Runs yapf (or other autoformatters) in place when saving files https://github.com/a11ce/micro-yapf βœ”οΈ
bookmark Bookmark lines and quickly jump between saved positions https://github.com/haqk/micro-bookmark βœ”οΈ
quickfix Adds a functionality similar to VIM quickfix pane https://github.com/serge-v/micro-quickfix βœ”οΈ
jump Jump to any function, class or heading with F4. Go, Markdown, Python, C and in 40 other languages https://github.com/terokarvinen/micro-jump βœ”οΈ
detectindent Automatically detect indentation settings https://github.com/dmaluka/micro-detectindent βœ”οΈ
lsp An basic LSP client implementation https://github.com/AndCake/micro-plugin-lsp βœ”οΈ

Adding your own plugin

To add your own plugin, create a repo.json file containing all the metadata information for your plugin. See the Go plugin repo.json file as an example.

Then create a plugins/plugin.json file in this repository that specifies the zip file to download for the versions of micro you support. Point the zip files to the plugins release, like the other plugins, even though the zip will not exist at the time when you create the JSON file.

Then you can open a pull request which adds the link to that file to the channel.json file in this repo, and upload or provide a link to the zip files in your PR. If you PR is accepted, I will upload those zip files to the plugins release so they will be accessible to all micro users.

Please make sure to add a License to your plugin.

Updating your plugin

If you come out with a new version of your plugin, please open a PR modifying the plugins/plugin.json with your new version. Upload or provide a link to the zip file. When the update is approved I will upload this file to the plugins release.