Adding support for GO language
This commit is contained in:
parent
3338d39206
commit
460cb44177
3 changed files with 32 additions and 7 deletions
|
|
@ -2,4 +2,6 @@
|
|||
-- I promise not to create any merge conflicts in this directory :)
|
||||
--
|
||||
-- See the kickstart.nvim README for more information
|
||||
return {}
|
||||
local M = {}
|
||||
M.plugins = 'custom.plagins'
|
||||
return M
|
||||
|
|
|
|||
11
lua/custom/plugins/plagins.lua
Normal file
11
lua/custom/plugins/plagins.lua
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
local plugins = {
|
||||
{
|
||||
'williamboman/mason.nvim',
|
||||
opts = {
|
||||
ensure_installed = {
|
||||
'gopls',
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
return plugins
|
||||
Loading…
Add table
Add a link
Reference in a new issue