Skip to content

Commit

Permalink
feat: add linter plugin (nvim-lua#699)
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikaverpil authored and smCloudInTheSky committed May 26, 2024
1 parent cf1c10f commit a4b150f
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -798,11 +798,18 @@ require('lazy').setup({
end,
},

-- NOTE: Next Step on Your Neovim Journey: Add/Configure additional "plugins" for kickstart
-- These are some example plugins that I've included in the kickstart repository.
-- Uncomment any of the lines below to enable them.
require 'kickstart.plugins.autoformat',
require 'kickstart.plugins.debug',
-- The following two comments only work if you have downloaded the kickstart repo, not just copy pasted the
-- init.lua. If you want these files, they are in the repository, so you can just download them and
-- put them in the right spots if you want.

-- NOTE: Next step on your Neovim journey: Add/Configure additional plugins for kickstart
--
-- Here are some example plugins that I've included in the kickstart repository.
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
--
-- require 'kickstart.plugins.debug',
-- require 'kickstart.plugins.indent_line',
-- require 'kickstart.plugins.lint',

-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
-- This is the easiest way to modularize your config.
Expand Down

0 comments on commit a4b150f

Please sign in to comment.