@@ -588,6 +588,15 @@ require('lazy').setup({
588588 end ,
589589 })
590590
591+ -- Change diagnostic symbols in the sign column (gutter)
592+ -- if vim.g.have_nerd_font then
593+ -- local signs = { Error = '', Warn = '', Hint = '', Info = '' }
594+ -- for type, icon in pairs(signs) do
595+ -- local hl = 'DiagnosticSign' .. type
596+ -- vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })
597+ -- end
598+ -- end
599+
591600 -- LSP servers and clients are able to communicate to each other what features they support.
592601 -- By default, Neovim doesn't support everything that is in the LSP specification.
593602 -- When you add nvim-cmp, luasnip, etc. Neovim now has *more* capabilities.
@@ -907,7 +916,7 @@ require('lazy').setup({
907916 -- - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects
908917 },
909918
910- -- The following two comments only work if you have downloaded the kickstart repo, not just copy pasted the
919+ -- The following comments only work if you have downloaded the kickstart repo, not just copy pasted the
911920 -- init.lua. If you want these files, they are in the repository, so you can just download them and
912921 -- place them in the correct locations.
913922
@@ -927,8 +936,12 @@ require('lazy').setup({
927936 -- This is the easiest way to modularize your config.
928937 --
929938 -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
930- -- For additional information, see `:help lazy.nvim-lazy.nvim-structuring-your-plugins`
931939 -- { import = 'custom.plugins' },
940+ --
941+ -- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec`
942+ -- Or use telescope!
943+ -- In normal mode type `<space>sh` then write `lazy.nvim-plugin`
944+ -- you can continue same window with `<space>sr` which resumes last telescope search
932945}, {
933946 ui = {
934947 -- If you are using a Nerd Font: set icons to an empty table which will use the
0 commit comments