jdrupal-dev
/
drupal.nvim
drupal.nvim
A Drupal plugin for neovim coded in Lua.completion
manually-created
drupal.nvim offers features such as autocompletion of Drupal services using "@", and the generation of LuaSnip snippets for Drupal hooks.
Install instructions
Dotfyle does not endorse any plugins. Install at your own risk.
{
"jdrupal-dev/drupal.nvim",
dependencies = { "nvim-lua/plenary.nvim" },
config = function()
require("drupal").setup({
services_cmp_trigger_character = "@",
get_drush_executable = function(current_dir)
return "drush"
end
})
end
}