feat: format mako notifications

This commit is contained in:
max_richter 2022-01-19 14:15:58 +01:00
parent 3d32043a89
commit 7ba32f03f5
2 changed files with 96 additions and 87 deletions

View File

@ -2,20 +2,27 @@ sort=-time
layer=overlay
background-color=#ffffff
width=300
height=110
height=300
border-color=#000000
border-radius=0
border-radius=2
icons=0
max-icon-size=64
default-timeout=5000
ignore-timeout=1
font=monospace 14
font=FiraMono Nerd Font 14
text-color=#000000
margin=5
padding=0,20,20,10
border-size=5
[urgency=low]
border-size=0
border-color=#000000
background-color=#ffffff99
[urgency=normal]
border-size=0
progress-color=over #ff0000
border-color=#d08770
[urgency=high]

View File

@ -1,5 +1,5 @@
return require("packer").startup(function()
return require("packer").startup(
function()
-- Let packer manage itself
use "wbthomason/packer.nvim"
@ -10,11 +10,11 @@ return require("packer").startup(function()
use "nathom/filetype.nvim"
use "alexghergh/nvim-tmux-navigation"
use 'lervag/vimtex'
use "lervag/vimtex"
-- Theming Section
-- use 'folke/tokyonight.nvim'
use 'EdenEast/nightfox.nvim'
use "EdenEast/nightfox.nvim"
use "xiyaowong/nvim-transparent"
-- Layout Plugins
@ -35,6 +35,8 @@ return require("packer").startup(function()
use "junegunn/fzf"
use "nvim-telescope/telescope.nvim"
use "sakhnik/nvim-gdb"
-- Postman like features
use "NTBBloodbath/rest.nvim"
@ -75,8 +77,8 @@ return require("packer").startup(function()
use "windwp/nvim-autopairs"
use "neoclide/jsonc.vim"
use {
'nvim-treesitter/nvim-treesitter',
run = ':TSUpdate'
"nvim-treesitter/nvim-treesitter",
run = ":TSUpdate"
}
-- Preview Markdown
@ -92,5 +94,5 @@ return require("packer").startup(function()
-- Database Feature
use "tpope/vim-dadbod"
use "kristijanhusak/vim-dadbod-ui"
end)
end
)