From 38fbfb61c15f340e304e57c8d1e51e14b862cf97 Mon Sep 17 00:00:00 2001 From: servostar Date: Thu, 7 Nov 2024 19:47:51 +0100 Subject: [PATCH] feat: add plugiin nvim-notify --- lua/plugins/nvim-notify.lua | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 lua/plugins/nvim-notify.lua diff --git a/lua/plugins/nvim-notify.lua b/lua/plugins/nvim-notify.lua new file mode 100644 index 0000000..e77c59b --- /dev/null +++ b/lua/plugins/nvim-notify.lua @@ -0,0 +1,26 @@ + +-- +-- Prettier user interface for VIM notifications. +-- +-- Source: https://github.com/rcarriga/nvim-notify +-- .............................................. +-- +-- Author: Sven Vogel +-- Created: 01.11.2024 +-- Edited: 01.11.2024 +-- +-- ============================================== + +return { + { + 'rcarriga/nvim-notify', + lazy = false, + opts = { + render = "wrapped-compact" + }, + -- Source: https://www.lazyvim.org/plugins/ui#nvim-notify + init = function() + vim.notify = require('notify') + end + } +}