README.md

February 27, 2026 ยท View on GitHub

nvim-oxlint

  • a lazy vim plugin making use of oxling via lsp server

references

installation

with Lazy.nvim

{
  "soulsam480/nvim-oxlint",
  opts = {}
}

Config

{
  "soulsam480/nvim-oxlint",
  opts = {
    run = 'onSave',
    config_path = '.oxlintrc.json',
    enable = true,
    type_aware = true
  }
}
  • filetypes <- trigger
{
  "javascript",
  "javascriptreact",
  "javascript.jsx",
  "typescript",
  "typescriptreact",
  "typescript.tsx",
}
  • root_dir <- default is .git parent
  • capabilities <- default is default client capabilities
  • handlers <- default is config change

Lazy.nvim config example