From cf7df9ffa176bd112836819a720b954b01a6dd72 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 23 Dec 2023 13:49:29 +0100 Subject: [PATCH] feat: Add Neoconf --- .neoconf.json | 15 +++++++++++++++ lua/core/plugins/lsp.lua | 1 + 2 files changed, 16 insertions(+) create mode 100644 .neoconf.json diff --git a/.neoconf.json b/.neoconf.json new file mode 100644 index 00000000..7c480874 --- /dev/null +++ b/.neoconf.json @@ -0,0 +1,15 @@ +{ + "neodev": { + "library": { + "enabled": true, + "plugins": true + } + }, + "neoconf": { + "plugins": { + "lua_ls": { + "enabled": true + } + } + } +} diff --git a/lua/core/plugins/lsp.lua b/lua/core/plugins/lsp.lua index 43a54788..963c6f8a 100644 --- a/lua/core/plugins/lsp.lua +++ b/lua/core/plugins/lsp.lua @@ -7,6 +7,7 @@ return { dependencies = { { "onsails/lspkind-nvim" }, { "folke/neodev.nvim", config = true, lazy = true, ft = "lua" }, + { "folke/neoconf.nvim", config = true, lazy = true, ft = "lua" }, }, config = function() require("core.plugins.lsp.lsp")