[mirror] Make your go dev experience better github.com/olexsmir/gopher.nvim
neovim golang
at v0.1.2 350 B view raw
1local M = { 2 config = { 3 ---set custom commands for tools 4 commands = { 5 go = "go", 6 gomodifytags = "gomodifytags", 7 gotests = "gotests", 8 impl = "impl", 9 }, 10 }, 11} 12 13---Plugin setup function 14---@param opts table user options 15function M.setup(opts) 16 M.config = vim.tbl_deep_extend("force", M.config, opts) 17end 18 19return M