return { "klen/nvim-config-local", config = function() require("config-local").setup({ -- Config file patterns to load (lua supported) config_files = { ".seth.nvim.lua", "nvim.lua", ".nvim.lua", ".nvimrc", ".exrc" }, -- Where the plugin keeps files data hashfile = vim.fn.stdpath("data") .. "/config-local", autocommands_create = true, -- Create autocommands (VimEnter, DirectoryChanged) commands_create = true, -- Create commands (ConfigLocalSource, ConfigLocalEdit, ConfigLocalTrust, ConfigLocalIgnore) silent = false, -- Disable plugin messages (Config loaded/ignored) lookup_parents = false, -- Lookup config files in parent directories }) end, keys = { { "LC", "ConfigLocalEdit", desc = "Edit local config", }, }, }