diff --git a/nvim/lua/plugs/arrow.lua b/nvim/lua/plugs/arrow.lua deleted file mode 100644 index 89bace8..0000000 --- a/nvim/lua/plugs/arrow.lua +++ /dev/null @@ -1,31 +0,0 @@ -return { - "otavioschwanck/arrow.nvim", - event = "VeryLazy", - lazy = true, - opts = { - show_icons = true, - leader_key = ",", - global_bookmarks = false, - separate_by_branch = true, - custom_actions = { - open = function(filename, _) - vim.cmd(string.format(":drop %s", filename)) - end, - }, - mappings = { - edit = "e", - delete_mode = "d", - clear_all_items = "C", - toggle = "s", - open_vertical = "v", - open_horizontal = "h", - quit = "q", - remove = "x", - next_item = "n", - prev_item = "p", - }, - window = { - border = "single", - } - } -} diff --git a/nvim/lua/plugs/incline.lua b/nvim/lua/plugs/incline.lua index b3cedea..811e6fe 100644 --- a/nvim/lua/plugs/incline.lua +++ b/nvim/lua/plugs/incline.lua @@ -97,15 +97,6 @@ return { return label end - local function get_arrow_label() - local statusline = require("arrow.statusline") - if statusline.is_on_arrow_file(props.buf) == nil then - return "" - end - - return " " .. statusline.text_for_statusline_with_icons(props.buf) - end - return { guibg = utils.ayu_colors.panel_bg, guifg = utils.ayu_colors.fg, @@ -114,7 +105,6 @@ return { { get_git_diff() }, { get_ft_icon() }, { get_file_path() }, - { get_arrow_label() .. "  " .. vim.api.nvim_win_get_number(props.win), group = "DevIconWindows" }, { " " } } end,