You've already forked dotfiles
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.
28 lines
546 B
Lua
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
|
|
},
|
|
}
|
|
}
|