Skip to content

synic/refactorex.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

refactorex.nvim

A Neovim plugin for RefactorEx - Elixir refactoring tool

Prerequisites

  • Neovim 0.8.0 or higher
  • Elixir/Mix installed on your system

Installation

With lazy.nvim

{
  "synic/refactorex.nvim",
  ft = "elixir",
  opts = {
    auto_update = true,
    pin_version = nil,
  }
}

Without lazy.nvim (manual installation)

Install the plugin using your preferred package manager

Example using packer.nvim:

use {
  "synic/refactorex.nvim",
  config = function()
    require("refactorex").setup({ auto_update = true, pin_version = nil })
  end,
}

Available Options

  • auto_update (boolean): When true, automatically checks for updates when the plugin loads.
  • pin_version (string): When set, forces the plugin to use this specific version (e.g., "0.1.30"). This overrides auto_update.

Commands

  • :RefactorExDownload: Downloads and installs the latest version of RefactorEx, restarting the LSP server if it's running

About

Neovim plugin for RefactorEx

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages