Mercurial > dotfiles
view dot_config/nvim/lua/on_attach.lua @ 275:6eae07a6985f
Update urls for completion-nvim and diagnostic-nvim
author | zegervdv <zegervdv@me.com> |
---|---|
date | Thu, 06 Aug 2020 22:24:25 +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