diff --git a/dotfiles/nvim/lua/plugins/presence.lua b/dotfiles/nvim/lua/plugins/presence.lua new file mode 100644 index 0000000..292844a --- /dev/null +++ b/dotfiles/nvim/lua/plugins/presence.lua @@ -0,0 +1,20 @@ +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 +} diff --git a/modules/packages/nvim.nix b/modules/packages/nvim.nix index 61a38f0..392bf53 100644 --- a/modules/packages/nvim.nix +++ b/modules/packages/nvim.nix @@ -32,6 +32,7 @@ fd texlab haskell-language-server + rustc ]; };