summaryrefslogtreecommitdiff
path: root/lua/config/lazy.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/config/lazy.lua')
-rw-r--r--lua/config/lazy.lua53
1 files changed, 23 insertions, 30 deletions
diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua
index a61e3b4..5aed367 100644
--- a/lua/config/lazy.lua
+++ b/lua/config/lazy.lua
@@ -23,41 +23,35 @@ require("lazy").setup({
"jghauser/follow-md-links.nvim",
"m4xshen/autoclose.nvim",
"stevearc/conform.nvim",
+ "norcalli/nvim-colorizer.lua",
+ "neovim/nvim-lspconfig",
+ {
+ "williamboman/mason.nvim",
+ dependencies = {
+ "williamboman/mason-lspconfig.nvim",
+ -- for formatters and linters
+ "WhoIsSethDaniel/mason-tool-installer.nvim",
+ },
+ config = function()
+ require("mason").setup({
+ ui = {
+ border = "rounded",
+ },
+ })
+ end,
+ },
+ {
+ --snippets
+ "L3MON4D3/LuaSnip",
+ version = "v2.*",
+ build = "make install_jsregexp",
+ },
-- "mfussenegger/nvim-lint",
- -- "neovim/nvim-lspconfig",
- -- {
- -- "norcalli/nvim-colorizer.lua",
- -- config = function()
- -- -- require("colorizer").setup()
- -- end,
- -- },
- --
- -- {
- -- "williamboman/mason.nvim",
- -- dependencies = {
- -- "williamboman/mason-lspconfig.nvim",
- -- -- for formatters and linters
- -- "WhoIsSethDaniel/mason-tool-installer.nvim",
- -- },
- -- config = function()
- -- require("mason").setup({
- -- ui = {
- -- border = "rounded",
- -- },
- -- })
- -- end,
- -- },
-- {
-- "ray-x/lsp_signature.nvim",
-- event = "LspAttach",
-- },
-- {
- -- --snippets
- -- "L3MON4D3/LuaSnip",
- -- version = "v2.*",
- -- build = "make install_jsregexp",
- -- },
- -- {
-- "hrsh7th/nvim-cmp",
-- dependencies = {
-- "hrsh7th/cmp-nvim-lsp",
@@ -68,7 +62,6 @@ require("lazy").setup({
-- },
-- event = { "InsertEnter", "CmdlineEnter" },
-- },
-
{
"folke/which-key.nvim",
event = "VeryLazy",