compiler
URL: https://github.com/Zeioth/compiler.nvim/
Maintainers: Austin Horstman
Neovim compiler for building and running your code.
note
Some languages require you manually install their compilers in your machine, so compiler.nvim is able to call them.
Please check here, as the packages will be different depending your operative system.
plugins.compiler.enable
Whether to enable compiler.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.compiler.package
The compiler package to use.
Type: package
Default:
pkgs.vimPlugins.compiler-nvim
Declared by:
plugins.compiler.autoLoad
Whether to automatically load compiler when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.compiler.settings
Options provided to the require('compiler').setup function.
Type: lua value
Default:
{ }
Example:
{
callback = {
__raw = ''
function()
print('nixvim')
end
'';
};
foo_bar = 42;
hostname = "localhost:8080";
}
Declared by: