mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-23 05:38:38 +02:00
tree picker and go
This commit is contained in:
parent
ca533432a6
commit
9953fa644c
3 changed files with 27 additions and 2 deletions
12
lua/custom/plugins/go.lua
Normal file
12
lua/custom/plugins/go.lua
Normal file
|
@ -0,0 +1,12 @@
|
|||
return {
|
||||
'ray-x/go.nvim',
|
||||
requires = {
|
||||
'ray-x/guihua.lua'
|
||||
},
|
||||
config = function()
|
||||
require("go").setup()
|
||||
end,
|
||||
event = { 'CmdlineEnter' },
|
||||
ft = { 'go', 'gomod' },
|
||||
build = ':lua require("go.install").update_all_sync()',
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue