diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-11-08 15:51:28 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-11-08 15:51:28 +0100 |
commit | 160ce5e9595a18c1434562b42f2371be9c58f102 (patch) | |
tree | 942a3ad5de2f0ece44e4b3604dc71223be60c4ef /lua/config/lazy.lua | |
parent | 379cd763460659bfdbd49386108a9a5ab68663c2 (diff) |
checkpoint
Diffstat (limited to 'lua/config/lazy.lua')
-rw-r--r-- | lua/config/lazy.lua | 53 |
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", |