gopher.nvim/lua/gopher/init.lua
2022-05-31 00:51:44 +03:00

9 lines
230 B
Lua

local tags = require "gopher.struct_tags"
local gopher = {}
gopher.install_deps = require("gopher.installer").install_all
gopher.tags_add = tags.add
gopher.tags_rm = tags.remove
gopher.mod = require "gopher.gomod"
return gopher