add plugins to neovim
This commit is contained in:
parent
eb3bbeacc3
commit
43fec98399
3 changed files with 15 additions and 0 deletions
|
|
@ -14,3 +14,6 @@ vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' }
|
|||
|
||||
require("config.lazy")
|
||||
|
||||
require("mason").setup()
|
||||
require("mason-lspconfig").setup()
|
||||
|
||||
|
|
|
|||
6
src/.config/nvim/lazy-lock.json
Normal file
6
src/.config/nvim/lazy-lock.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"lazy.nvim": { "branch": "main", "commit": "077102c5bfc578693f12377846d427f49bc50076" },
|
||||
"mason-lspconfig.nvim": { "branch": "main", "commit": "25c11854aa25558ee6c03432edfa0df0217324be" },
|
||||
"mason.nvim": { "branch": "main", "commit": "e2f7f9044ec30067bc11800a9e266664b88cda22" },
|
||||
"nvim-lspconfig": { "branch": "master", "commit": "d88ae6623fef09251e3aa20001bb761686eae730" }
|
||||
}
|
||||
|
|
@ -26,6 +26,12 @@ require("lazy").setup({
|
|||
spec = {
|
||||
-- import your plugins
|
||||
-- { import = "plugins" },
|
||||
{
|
||||
"williamboman/mason.nvim",
|
||||
"williamboman/mason-lspconfig.nvim",
|
||||
"neovim/nvim-lspconfig",
|
||||
}
|
||||
|
||||
},
|
||||
-- Configure any other settings here. See the documentation for more details.
|
||||
-- colorscheme that will be used when installing plugins.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue