98 lines
2.6 KiB
Lua
98 lines
2.6 KiB
Lua
local Util = require("lazyvim.util")
|
|
|
|
return {
|
|
{
|
|
"akinsho/bufferline.nvim",
|
|
opts = { options = { always_show_bufferline = true } },
|
|
},
|
|
|
|
{
|
|
"b0o/incline.nvim",
|
|
event = "BufReadPre",
|
|
enabled = true,
|
|
config = function()
|
|
require("incline").setup({
|
|
highlight = {
|
|
groups = {
|
|
InclineNormal = { guibg = "#742b3c", guifg = "#000" },
|
|
InclineNormalNC = { guifg = "#e95678", guibg = "#303030" },
|
|
},
|
|
},
|
|
window = {
|
|
margin = { vertical = 0, horizontal = 0 },
|
|
placement = { vertical = "bottom", horizontal = "left" },
|
|
},
|
|
render = function(props)
|
|
local filename = vim.fn.fnamemodify(vim.api.nvim_buf_get_name(props.buf), ":t")
|
|
local icon, color = require("nvim-web-devicons").get_icon_color(filename)
|
|
return { { icon, guifg = color }, { " " }, { filename } }
|
|
end,
|
|
})
|
|
end,
|
|
},
|
|
|
|
{
|
|
"nvim-lualine/lualine.nvim",
|
|
opts = function(_, opts)
|
|
local icons = require("lazyvim.config").icons
|
|
local warning_col = { fg = "#bf7b00" }
|
|
|
|
opts.options.theme = "horizon"
|
|
|
|
opts.sections = {
|
|
lualine_a = { "mode" },
|
|
lualine_b = {
|
|
-- Show "root dir" of current file when different from CWD
|
|
Util.lualine.root_dir({ color = warning_col }),
|
|
{ "filetype", icon_only = true, separator = "", padding = { left = 1, right = 0 } },
|
|
{ Util.lualine.pretty_path() },
|
|
},
|
|
lualine_c = {
|
|
{
|
|
"diagnostics",
|
|
symbols = {
|
|
error = icons.diagnostics.Error,
|
|
warn = icons.diagnostics.Warn,
|
|
info = icons.diagnostics.Info,
|
|
hint = icons.diagnostics.Hint,
|
|
},
|
|
},
|
|
},
|
|
lualine_x = opts.sections.lualine_x,
|
|
lualine_z = opts.sections.lualine_y,
|
|
lualine_y = {
|
|
{
|
|
"fileformat",
|
|
color = function()
|
|
return (vim.bo.fileformat ~= "unix") and warning_col or nil
|
|
end,
|
|
separator = "",
|
|
padding = { left = 1, right = 0 },
|
|
},
|
|
{
|
|
function()
|
|
return vim.o.fileencoding
|
|
end,
|
|
color = function()
|
|
return (vim.o.fileencoding ~= "utf-8") and warning_col or nil
|
|
end,
|
|
},
|
|
},
|
|
}
|
|
end,
|
|
},
|
|
|
|
{
|
|
"folke/noice.nvim",
|
|
opts = {
|
|
views = {
|
|
cmdline_popup = {
|
|
border = { style = "rounded" },
|
|
position = { col = "50%", row = "80%" },
|
|
size = { width = "60%" },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|