view dot_config/nvim/lua/on_attach.lua @ 257:d726921aaabe

Clean start of dotfiles repo
author zegervdv <zegervdv@me.com>
date Thu, 21 May 2020 11:28:36 +0200
parents
children
line wrap: on
line source

local M = {}

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

return M