@@ -590,6 +590,15 @@ require('lazy').setup({
590590 end ,
591591 })
592592
593+ -- Change diagnostic symbols in the sign column (gutter)
594+ -- if vim.g.have_nerd_font then
595+ -- local signs = { Error = '', Warn = '', Hint = '', Info = '' }
596+ -- for type, icon in pairs(signs) do
597+ -- local hl = 'DiagnosticSign' .. type
598+ -- vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })
599+ -- end
600+ -- end
601+
593602 -- LSP servers and clients are able to communicate to each other what features they support.
594603 -- By default, Neovim doesn't support everything that is in the LSP specification.
595604 -- When you add nvim-cmp, luasnip, etc. Neovim now has *more* capabilities.
@@ -911,7 +920,7 @@ require('lazy').setup({
911920 -- - Treesitter + textobjects: https://github.com/nvim-treesitter/nvim-treesitter-textobjects
912921 },
913922
914- -- The following two comments only work if you have downloaded the kickstart repo, not just copy pasted the
923+ -- The following comments only work if you have downloaded the kickstart repo, not just copy pasted the
915924 -- init.lua. If you want these files, they are in the repository, so you can just download them and
916925 -- place them in the correct locations.
917926
@@ -933,6 +942,10 @@ require('lazy').setup({
933942 -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
934943 -- For additional information, see `:help lazy.nvim-lazy.nvim-structuring-your-plugins`
935944 { import = ' custom.plugins' },
945+ -- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec`
946+ -- Or use telescope!
947+ -- In normal mode type `<space>sh` then write `lazy.nvim-plugin`
948+ -- you can continue same window with `<space>sr` which resumes last telescope search
936949}, {
937950 ui = {
938951 -- If you are using a Nerd Font: set icons to an empty table which will use the
0 commit comments