Sitemap

Neovim Plugins and Configuration Recipes | 4

5 min readOct 22, 2023

Series to explore Neovim plugins and configuration recipes.

Press enter or click to view image in full size
Neovim Plugins and Configuration Recipes | 4

This article is part of the Neovim Plugins and Configuration Recipes series.

The Neovim configuration files are available in this repository.

Plugins

Plugins that are selected for this article!

compiler-explorer.nvim

This is an interesting plugin. compiler.explorer.nvim compiles our code to assembly code from Neovim using the compiler-explorer REST API.

It features:

  • Compile code asynchronously using vim.loop.
  • Select the compiler interactively using vim.ui.select or passing it as a Vim command parameter.
  • Compile visual selections.
  • Send compiler warnings and errors to the quickfix list.
  • Highlight matching lines between source code and assembly.
  • Show binary output (opcodes and address) using virtual text.
  • Format code.
  • Add libraries.
  • Show tooltips about specific instructions.
  • Jump to label definitions.
  • Load example code.
  • Open the website…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web
Already have an account? Sign in
alpha2phi

Written by alpha2phi

Software engineer, Data Science and ML practitioner.

Responses (1)

Write a response

Intriguing, thought-provoking piece, cheers