aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/goto-preview.lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2025-08-30 00:46:23 +0200
committersrdusr <trevorgray@srdusr.com>2025-08-30 00:46:23 +0200
commit4a29c3cc90b48048961331de31c2229cfd71055f (patch)
tree6e37dd8d43e64aceda22c32e2216d329d77df3b1 /.config/nvim/lua/plugins/goto-preview.lua
parent39ba69d6c1fc6e507d91570220b47e60e237b02c (diff)
downloaddotfiles-4a29c3cc90b48048961331de31c2229cfd71055f.tar.gz
dotfiles-4a29c3cc90b48048961331de31c2229cfd71055f.zip
Removed nvim subtree
Diffstat (limited to '.config/nvim/lua/plugins/goto-preview.lua')
-rw-r--r--.config/nvim/lua/plugins/goto-preview.lua18
1 files changed, 0 insertions, 18 deletions
diff --git a/.config/nvim/lua/plugins/goto-preview.lua b/.config/nvim/lua/plugins/goto-preview.lua
deleted file mode 100644
index d4d2c67..0000000
--- a/.config/nvim/lua/plugins/goto-preview.lua
+++ /dev/null
@@ -1,18 +0,0 @@
-require('goto-preview').setup {
- width = 120; -- Width of the floating window
- height = 15; -- Height of the floating window
- border = {"↖", "─" ,"┐", "│", "┘", "─", "└", "│"}; -- Border characters of the floating window
- default_mappings = false; -- Bind default mappings
- debug = false; -- Print debug information
- opacity = nil; -- 0-100 opacity level of the floating window where 100 is fully transparent.
- resizing_mappings = false; -- Binds arrow keys to resizing the floating window.
- post_open_hook = nil; -- A function taking two arguments, a buffer and a window to be ran as a hook.
- references = { -- Configure the telescope UI for slowing the references cycling window.
- telescope = require("telescope.themes").get_dropdown({ hide_preview = false })
- };
- -- These two configs can also be passed down to the goto-preview definition and implementation calls for one off "peak" functionality.
- focus_on_open = true; -- Focus the floating window when opening it.
- dismiss_on_move = false; -- Dismiss the floating window when moving the cursor.
- force_close = true, -- passed into vim.api.nvim_win_close's second argument. See :h nvim_win_close
- bufhidden = "wipe", -- the bufhidden option to set on the floating window. See :h bufhidden
-}