gopher.nvim/lua/gopher/init.lua
2022-05-30 23:34:09 +03:00

8 lines
194 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
return gopher