From dc17ab2fb051efceafddc3b97ebe9f67c775e9b7 Mon Sep 17 00:00:00 2001 From: mhsn Date: Wed, 22 Jan 2025 00:44:19 +0000 Subject: split plugins into separate files and other changes --- lua/plugins/lsp.lua | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 lua/plugins/lsp.lua (limited to 'lua/plugins/lsp.lua') diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua deleted file mode 100644 index 66a7e76..0000000 --- a/lua/plugins/lsp.lua +++ /dev/null @@ -1,24 +0,0 @@ -return { - { - "neovim/nvim-lspconfig", - }, - { - "williamboman/mason.nvim", - config = function() - require("mason").setup() - end, - }, - { - "williamboman/mason-lspconfig.nvim", - dependencies = { "mason.nvim" }, - config = function() - require("mason-lspconfig").setup({ - handlers = { - function(lsp) - require("lspconfig")[lsp].setup({}) - end, - }, - }) - end, - }, -} -- cgit v1.2.3