Skip to content

wuchuheng/auto-fix-rust.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 

Repository files navigation

auto-fix-rust.nvim

A Neovim plugin written in Lua, designed to automatically fix Rust files after saving the rust file.

Features

  • Automatically fix Rust files after saving the file.

Requirements

  • Neovim (0.9.5 or newer)
  • Rust and Cargo installed on your system

Installation

Using lazy.nvim

Add auto-fix-rust.nvim to your Neovim configuration:

require("lazy").setup({
  {
    "wuchuheng/auto-fix-rust.nvim",
    event = "BufRead", -- Load on buffer read
    opts = function(_, opts)
      require("auto-fix-rust").setup()
    end
  }
})

This configuration ensures that auto-fix-rust.nvim is loaded when you open a Rust file, and it automatically sets up the plugin.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages