diff options
author | Squibid <me@zacharyscheiman.com> | 2025-05-06 16:51:24 -0500 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2025-05-06 16:51:24 -0500 |
commit | 7c3289fded1f75f6e060f56bd06edc2a327744d9 (patch) | |
tree | bf579e6eb1de84237a74ef13ce67703c15266afe /lua/conf/plugins/dressing.lua | |
parent | 3094bf2a3983b375f4adeccd25c3b12bbbded2aa (diff) | |
download | nvim-7c3289fded1f75f6e060f56bd06edc2a327744d9.tar.gz nvim-7c3289fded1f75f6e060f56bd06edc2a327744d9.tar.bz2 nvim-7c3289fded1f75f6e060f56bd06edc2a327744d9.zip |
kitchen sink again :(
Diffstat (limited to 'lua/conf/plugins/dressing.lua')
-rw-r--r-- | lua/conf/plugins/dressing.lua | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/lua/conf/plugins/dressing.lua b/lua/conf/plugins/dressing.lua deleted file mode 100644 index 75e4a44..0000000 --- a/lua/conf/plugins/dressing.lua +++ /dev/null @@ -1,19 +0,0 @@ -local branch = nil -if vim.fn.has("nvim-0.7.0") then - branch = 'nvim-0.7' -elseif vim.fn.has("nvim-0.5.0") then - branch = 'nvim-0.5' -end - -return { 'stevearc/dressing.nvim', - disable = true or not vim.fn.has("nvim-0.5.0"), - branch = branch, - requires = 'nvim-telescope/telescope.nvim', - function() - require('dressing').setup { - input = { - enabled = false - } - } - end -} |