home ~ projects ~ socials

Installing ESLint in Neovim With Lazy

Taking Notes

These are my notes for how I did the setup.

Notes

  • I use https://github.com/nvim-lua/kickstart.nvim. It comes with lazy (or, at least it did when I installed it).
  • I upgraded node with brew upgrade node
  • I updated npm with npm update -g npm
  • I added these two lines to the require('lazy').setup({ }, {}) seciton of my ~/.config/nvim/init.lua file:

    mfussenegger/nvim-lint,
    eslint/eslint,
  • I restarted Neovim and hit "I" to get Lazy to install them.
  • I quit Neovim and restarted it. Nothing complained.
-- end of line --

References