Rename pluginconf/ to plugins/settings/

This commit is contained in:
ItsDrike 2021-12-07 22:23:55 +01:00
parent 8350dc7926
commit 5627b96fff
No known key found for this signature in database
GPG key ID: FB8CA11A2CF3A843
11 changed files with 16 additions and 1 deletions

View file

@ -1,7 +1,7 @@
local vim = require("vim")
local fn = vim.fn
local plugin_directory = fn.stdpath("config") .. "/lua/pluginconf"
local plugin_directory = fn.stdpath("config") .. "/lua/plugins/settings"
-- Return the line (string) to be executed with lua that loads in given plugin file.
-- This is useful for the `config` or `setup` parameters of packer's use to source
@ -51,6 +51,21 @@ local plugin_list = {
after = "fzf",
requires = { "stsewd/fzf-checkout.vim", opt = true },
},
-- {
-- "neovim/nvim-lspconfig",
-- "williamboman/nvim-lsp-installer",
-- config = get_plugin_file("lspconfig.lua")
-- },
--{
-- "nvim-telescope/telescope.nvim",
-- --config = get_plugin_file("telescope.lua")
-- module = "telescope",
-- cmd = "Telescope",
-- requires = {
-- { "nvim-lua/popup.nvim" },
-- { "nvim-lua/plenary.nvim" },
-- }
--},
{
"neoclide/coc.nvim",
branch = "release",