diff options
author | Squibid <me@zacharyscheiman.com> | 2025-05-31 03:32:58 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2025-05-31 03:32:58 -0400 |
commit | e830931ff421e4380d5de8b1926842000ba9be34 (patch) | |
tree | 207584548026db649bc6ab21df3b41b71ebfd830 /lua/conf/plugins/refactoring.lua | |
parent | ef678f31fdf24c0e6c4eca9a13ad9f63a53447b9 (diff) | |
download | nvim-e830931ff421e4380d5de8b1926842000ba9be34.tar.gz nvim-e830931ff421e4380d5de8b1926842000ba9be34.tar.bz2 nvim-e830931ff421e4380d5de8b1926842000ba9be34.zip |
Diffstat (limited to 'lua/conf/plugins/refactoring.lua')
-rw-r--r-- | lua/conf/plugins/refactoring.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/conf/plugins/refactoring.lua b/lua/conf/plugins/refactoring.lua new file mode 100644 index 0000000..fb4a9d7 --- /dev/null +++ b/lua/conf/plugins/refactoring.lua @@ -0,0 +1,9 @@ +return { "ThePrimeagen/refactoring.nvim", + requires = { + "nvim-lua/plenary.nvim", + "nvim-treesitter/nvim-treesitter" + }, + function() + require('refactoring').setup {} + end +} |