Files
dotfiles/nvim/lua/plugins/lualine.lua
FaultyBranches e751cee778 feat: Removing the old web-devicons from lualine, disabling the snippet
style auto-pair attempt (will continue on other branches), disabling
passthrough in tmux as it is not seemingly necessary for clipboard usage
(remote testing needed), disabling the old mouse cursor fix for X
systems.

Adding the wezterm shortcuts for actually using the Clipboard for
pasting using the usual ctrl+shift+v combo.
2026-07-30 05:41:44 -05:00

28 lines
546 B
Lua

local function get_schema()
local schema = require('yaml-companion').get_buf_schema(0)
if schema.result[1].name == 'none' then
return ''
end
return schema.result[1].name
end
vim.pack.add({
'https://github.com/nvim-lualine/lualine.nvim'
})
require('lualine').setup {
tabline = {
lualine_a = {
'tabs',
},
lualine_z = {
'buffers',
}
},
sections = {
lualine_x = {
'encoding', 'fileformat', 'filetype', get_schema
},
}
}