1
Fork 0
nixos-system-config/dotfiles/nvim/lua/plugins/presence.lua
2024-09-28 21:05:55 +02:00

20 lines
411 B
Lua

return {
"vyfor/cord.nvim",
build = "./build || .\\build",
event = "VeryLazy",
config = function()
require"cord".setup {
editor = {
tooltip = "I will escape this meat prison one day.",
},
display = {
show_repository = false,
show_cursor_position = true,
},
lsp = {
show_problem_count = true,
severity = 2,
},
}
end
}