this repo has no description
at main 852 B view raw
1return { 2 "klen/nvim-config-local", 3 config = function() 4 require("config-local").setup({ 5 -- Config file patterns to load (lua supported) 6 config_files = { ".seth.nvim.lua", "nvim.lua", ".nvim.lua", ".nvimrc", ".exrc" }, 7 8 -- Where the plugin keeps files data 9 hashfile = vim.fn.stdpath("data") .. "/config-local", 10 11 autocommands_create = true, -- Create autocommands (VimEnter, DirectoryChanged) 12 commands_create = true, -- Create commands (ConfigLocalSource, ConfigLocalEdit, ConfigLocalTrust, ConfigLocalIgnore) 13 silent = false, -- Disable plugin messages (Config loaded/ignored) 14 lookup_parents = false, -- Lookup config files in parent directories 15 }) 16 end, 17 keys = { 18 { 19 "<leader>LC", 20 "<cmd>ConfigLocalEdit<cr>", 21 desc = "Edit local config", 22 }, 23 }, 24}