view dot_config/nvim/lua/on_attach.lua @ 276:ecc3074ac1fc

Add delimitMate config for systemverilog and python
author zegervdv <zegervdv@me.com>
date Mon, 24 Aug 2020 21:29:27 +0200
parents d726921aaabe
children
line wrap: on
line source

local M = {}

M.on_attach = function()
   require'diagnostic'.on_attach()
   require'completion'.on_attach()
end

return M