Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 474 Bytes

File metadata and controls

30 lines (21 loc) · 474 Bytes

nvim-java-cryeator

This plugin was created to help generate Java class files

Instalation

Using Lazy

{
  "ghaithsassi/nvim-java-cryeator",
  ft = "java",
  opts = {
    keymaps = {
      java_claa = "<leader>jc",
    },
    options = {
      auto_open = true, -- Open file after creation
      java_version = 17, -- Minimum Java version
      -- package_path_filter = "net/exmaple",
    },
  },

  build = "cd rust-fuzzy && cargo build --release",
}