Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
neovim-config/lua/plugins/configs/winbar.lua
Daryl Ronningen 69181599a5 rewrite config from scratch (#1)
Makes all the plugins lazyload, remove plugins with duplicate uses and just general nit picks and improvements

Reviewed-on: Relms/neovim-config#1
2022-09-02 17:42:32 +00:00

47 lines
1.2 KiB
Lua

local M = {}
local navic = require("nvim-navic")
local gps = require("nvim-gps")
local function is_empty(s)
return s == nil or s == ""
end
function M.get_filename()
return "%#WinBarFilename#" .. "%t" .. "%*"
end
function M.get_location()
local location = navic.get_location()
local gps_location = gps.get_location()
if not is_empty(location) then
return "%#WinBarContext#" .. " " .. ">" .. " " .. location .. "%*"
elseif not is_empty(gps_location) then
return "%#WinBarContext#" .. " " .. ">" .. " " .. gps_location .. "%*"
else
return ""
end
end
function M.get_fileicon()
local hl_winbar_file_icon = "WinBarFileIcon"
local file_path = vim.fn.expand("%:~:.:h")
local filename = vim.fn.expand("%:t")
local file_type = vim.fn.expand("%:e")
local file_icon = ""
local file_icon_color = ""
file_path = file_path:gsub("^%.", "")
file_path = file_path:gsub("^%/", "")
if not is_empty(filename) then
file_icon, file_icon_color =
require("nvim-web-devicons").get_icon_color(filename, file_type, { default = true })
vim.api.nvim_set_hl(0, hl_winbar_file_icon, { fg = file_icon_color })
end
return "%#WinBarContext#" .. "%#" .. hl_winbar_file_icon .. "#" .. file_icon .. " " .. "%*"
end
return M