view dot_config/nvim/lua/on_attach.lua @ 270:792e295c2ff5

Add neoformat and switch to verible branch for ale
author zegervdv <zegervdv@me.com>
date Thu, 25 Jun 2020 16:59:11 +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