summaryrefslogtreecommitdiffstats
path: root/nvim
diff options
context:
space:
mode:
Diffstat (limited to 'nvim')
-rw-r--r--nvim/init.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/nvim/init.lua b/nvim/init.lua
index e588129..b58677d 100644
--- a/nvim/init.lua
+++ b/nvim/init.lua
@@ -588,6 +588,15 @@ require('lazy').setup({
end,
})
+ -- Change diagnostic symbols in the sign column (gutter)
+ -- if vim.g.have_nerd_font then
+ -- local signs = { Error = '', Warn = '', Hint = '', Info = '' }
+ -- for type, icon in pairs(signs) do
+ -- local hl = 'DiagnosticSign' .. type
+ -- vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })
+ -- end
+ -- end
+
-- LSP servers and clients are able to communicate to each other what features they support.
-- By default, Neovim doesn't support everything that is in the LSP specification.
-- When you add nvim-cmp, luasnip, etc. Neovim now has *more* capabilities.