diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-11-04 07:35:34 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-11-04 07:35:34 +0100 |
commit | 379cd763460659bfdbd49386108a9a5ab68663c2 (patch) | |
tree | 8778abcf5ee27a6e781e5179fd4d6ef0b6ee9523 /lua/config/lazy.lua | |
parent | 68b90b79f06a0fa09866f35e84e4c72405ac547d (diff) |
checkpoint
Diffstat (limited to 'lua/config/lazy.lua')
-rw-r--r-- | lua/config/lazy.lua | 90 |
1 files changed, 45 insertions, 45 deletions
diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index 4c053d0..a61e3b4 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -23,51 +23,51 @@ require("lazy").setup({ "jghauser/follow-md-links.nvim", "m4xshen/autoclose.nvim", "stevearc/conform.nvim", - "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", - "hrsh7th/cmp-path", - "hrsh7th/cmp-buffer", - "saadparwaiz1/cmp_luasnip", - "onsails/lspkind.nvim", - }, - event = { "InsertEnter", "CmdlineEnter" }, - }, + -- "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", + -- "hrsh7th/cmp-path", + -- "hrsh7th/cmp-buffer", + -- "saadparwaiz1/cmp_luasnip", + -- "onsails/lspkind.nvim", + -- }, + -- event = { "InsertEnter", "CmdlineEnter" }, + -- }, { "folke/which-key.nvim", |