comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 257:d726921aaabe
1 local M = {}
2
3 M.on_attach = function()
4 require'diagnostic'.on_attach()
5 require'completion'.on_attach()
6 end
7
8 return M