Add go to neovim config
parent
8e60ae8d34
commit
924c36069f
@ -0,0 +1,17 @@
|
|||||||
|
local function config()
|
||||||
|
require('go').setup()
|
||||||
|
end
|
||||||
|
|
||||||
|
return {
|
||||||
|
'ray-x/go.nvim',
|
||||||
|
name = 'go',
|
||||||
|
import = 'plugins.go',
|
||||||
|
config = config,
|
||||||
|
event = {'CmdlineEnter'},
|
||||||
|
ft = {'go', 'gomod'},
|
||||||
|
dependencies = {
|
||||||
|
'ray-x/guihua.lua',
|
||||||
|
'lspconfig',
|
||||||
|
'treesitter',
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in New Issue