@@ -621,6 +621,15 @@ require('lazy').setup({
621621 end ,
622622 })
623623
624+ -- Change diagnostic symbols in the sign column (gutter)
625+ -- if vim.g.have_nerd_font then
626+ -- local signs = { Error = '', Warn = '', Hint = '', Info = '' }
627+ -- for type, icon in pairs(signs) do
628+ -- local hl = 'DiagnosticSign' .. type
629+ -- vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })
630+ -- end
631+ -- end
632+
624633 -- LSP servers and clients are able to communicate to each other what features they support.
625634 -- By default, Neovim doesn't support everything that is in the LSP specification.
626635 -- When you add nvim-cmp, luasnip, etc. Neovim now has *more* capabilities.
@@ -983,7 +992,7 @@ require('lazy').setup({
983992 -- - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects
984993 },
985994
986- -- The following two comments only work if you have downloaded the kickstart repo, not just copy pasted the
995+ -- The following comments only work if you have downloaded the kickstart repo, not just copy pasted the
987996 -- init.lua. If you want these files, they are in the repository, so you can just download them and
988997 -- place them in the correct locations.
989998
@@ -1003,8 +1012,12 @@ require('lazy').setup({
10031012 -- This is the easiest way to modularize your config.
10041013 --
10051014 -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
1006- -- For additional information, see `:help lazy.nvim-lazy.nvim-structuring-your-plugins`
10071015 { import = ' custom.plugins' },
1016+ --
1017+ -- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec`
1018+ -- Or use telescope!
1019+ -- In normal mode type `<space>sh` then write `lazy.nvim-plugin`
1020+ -- you can continue same window with `<space>sr` which resumes last telescope search
10081021}, {
10091022 ui = {
10101023 -- If you are using a Nerd Font: set icons to an empty table which will use the
0 commit comments