neovim-confs/lua/custom/init.lua

12 lines
365 B
Lua
Raw Normal View History

-- This is where you custom modules and plugins goes.
-- See the wiki for a guide on how to extend NvChad
2021-08-31 16:20:57 +02:00
local hooks = require "core.hooks"
-- For example, the hook below overrieds 'publish_diagnostics' in the 'lspconfig' file,
--
-- hooks.override("lsp", "publish_diagnostics", function(current)
-- current.virtual_text = false;
-- return current;
-- end)