diff options
| author | 2026-04-17 10:53:06 +0100 | |
|---|---|---|
| committer | 2026-04-17 10:53:06 +0100 | |
| commit | 6afcee49783f6a031f2542bd7fca84d9aa06b8c2 (patch) | |
| tree | 6e9d6d482efaeb0bb284a1472b83c6b8a647bc5b | |
| parent | 5b24ac140753dd16570b9da50e0d71fae9d96aa5 (diff) | |
| download | dotfiles-6afcee49783f6a031f2542bd7fca84d9aa06b8c2.tar.gz dotfiles-6afcee49783f6a031f2542bd7fca84d9aa06b8c2.tar.bz2 dotfiles-6afcee49783f6a031f2542bd7fca84d9aa06b8c2.zip | |
fix: remove redundant config function from refactoring.nvim
Both opts = {} and config calling setup({}) existed. The config function
overrides opts entirely, making opts a no-op. Keep only opts = {} since
lazy.nvim calls setup() automatically with opts.
| -rw-r--r-- | home/.config/nvim/lua/custom/plugins/init.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/home/.config/nvim/lua/custom/plugins/init.lua b/home/.config/nvim/lua/custom/plugins/init.lua index a394b91..3ddc92e 100644 --- a/home/.config/nvim/lua/custom/plugins/init.lua +++ b/home/.config/nvim/lua/custom/plugins/init.lua @@ -391,10 +391,6 @@ return { }, }, opts = {}, - config = function() - local refactoring = require("refactoring") - refactoring.setup({}) - end, }, { "folke/which-key.nvim", |
