view dot_config/nvim/lua/on_attach.lua @ 271:febfe1fb290c

Add yanked text highlighting
author zegervdv <zegervdv@me.com>
date Fri, 03 Jul 2020 17:06:08 +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