diff --git a/.config/nvim/lua/plugins/image.lua b/.config/nvim/lua/plugins/image.lua deleted file mode 100644 index 2d1a789f..00000000 --- a/.config/nvim/lua/plugins/image.lua +++ /dev/null @@ -1,28 +0,0 @@ -local function resolver(document_path, image_path, fallback) - local vault_dir = "/home/fic/second-brain" - -- Format path for Obsidian vault - if document_path:find(vault_dir, 1, true) then - return vault_dir .. "/" .. image_path - end - -- fallback to default - return fallback(document_path, image_path) -end - -return { - { - "3rd/image.nvim", - enabled = false, - opts = { - tmux_show_only_in_active_window = true, - window_overlap_clear_enabled = true, - integrations = { - markdown = { - enabled = true, - clear_in_insert_mode = true, - only_render_image_at_cursor = true, - resolve_image_path = resolver, - }, - }, - }, - }, -} diff --git a/.config/nvim/lua/plugins/vim-tmux-navigator.lua b/.config/nvim/lua/plugins/vim-tmux-navigator.lua deleted file mode 100644 index 2d6c966e..00000000 --- a/.config/nvim/lua/plugins/vim-tmux-navigator.lua +++ /dev/null @@ -1,5 +0,0 @@ -return { - "christoomey/vim-tmux-navigator", - enabled = false, - lazy = false, -}