feat: format mako notifications
This commit is contained in:
parent
3d32043a89
commit
7ba32f03f5
@ -2,20 +2,27 @@ sort=-time
|
|||||||
layer=overlay
|
layer=overlay
|
||||||
background-color=#ffffff
|
background-color=#ffffff
|
||||||
width=300
|
width=300
|
||||||
height=110
|
height=300
|
||||||
border-color=#000000
|
border-color=#000000
|
||||||
border-radius=0
|
border-radius=2
|
||||||
icons=0
|
icons=0
|
||||||
max-icon-size=64
|
max-icon-size=64
|
||||||
default-timeout=5000
|
default-timeout=5000
|
||||||
ignore-timeout=1
|
ignore-timeout=1
|
||||||
font=monospace 14
|
font=FiraMono Nerd Font 14
|
||||||
text-color=#000000
|
text-color=#000000
|
||||||
|
margin=5
|
||||||
|
padding=0,20,20,10
|
||||||
|
border-size=5
|
||||||
|
|
||||||
[urgency=low]
|
[urgency=low]
|
||||||
|
border-size=0
|
||||||
border-color=#000000
|
border-color=#000000
|
||||||
|
background-color=#ffffff99
|
||||||
|
|
||||||
[urgency=normal]
|
[urgency=normal]
|
||||||
|
border-size=0
|
||||||
|
progress-color=over #ff0000
|
||||||
border-color=#d08770
|
border-color=#d08770
|
||||||
|
|
||||||
[urgency=high]
|
[urgency=high]
|
||||||
|
@ -1,96 +1,98 @@
|
|||||||
return require("packer").startup(function()
|
return require("packer").startup(
|
||||||
|
function()
|
||||||
|
-- Let packer manage itself
|
||||||
|
use "wbthomason/packer.nvim"
|
||||||
|
|
||||||
-- Let packer manage itself
|
-- General Helper Functions
|
||||||
use "wbthomason/packer.nvim"
|
use "nvim-lua/plenary.nvim"
|
||||||
|
|
||||||
-- General Helper Functions
|
-- Faster Filetype Detection
|
||||||
use "nvim-lua/plenary.nvim"
|
use "nathom/filetype.nvim"
|
||||||
|
use "alexghergh/nvim-tmux-navigation"
|
||||||
|
|
||||||
-- Faster Filetype Detection
|
use "lervag/vimtex"
|
||||||
use "nathom/filetype.nvim"
|
|
||||||
use "alexghergh/nvim-tmux-navigation"
|
|
||||||
|
|
||||||
use 'lervag/vimtex'
|
-- Theming Section
|
||||||
|
-- use 'folke/tokyonight.nvim'
|
||||||
|
use "EdenEast/nightfox.nvim"
|
||||||
|
use "xiyaowong/nvim-transparent"
|
||||||
|
|
||||||
-- Theming Section
|
-- Layout Plugins
|
||||||
-- use 'folke/tokyonight.nvim'
|
use "kyazdani42/nvim-web-devicons"
|
||||||
use 'EdenEast/nightfox.nvim'
|
use "kyazdani42/nvim-tree.lua"
|
||||||
use "xiyaowong/nvim-transparent"
|
use "nvim-lua/popup.nvim"
|
||||||
|
use "mhinz/vim-startify"
|
||||||
|
use "karb94/neoscroll.nvim"
|
||||||
|
|
||||||
-- Layout Plugins
|
use "tpope/vim-fugitive"
|
||||||
use "kyazdani42/nvim-web-devicons"
|
use "tpope/vim-surround"
|
||||||
use "kyazdani42/nvim-tree.lua"
|
use "lambdalisue/suda.vim"
|
||||||
use "nvim-lua/popup.nvim"
|
use "editorconfig/editorconfig-vim"
|
||||||
use "mhinz/vim-startify"
|
|
||||||
use "karb94/neoscroll.nvim"
|
|
||||||
|
|
||||||
use "tpope/vim-fugitive"
|
-- Code Navigation
|
||||||
use "tpope/vim-surround"
|
use "dense-analysis/ale"
|
||||||
use "lambdalisue/suda.vim"
|
use "nathanmsmith/nvim-ale-diagnostic"
|
||||||
use "editorconfig/editorconfig-vim"
|
use "junegunn/fzf"
|
||||||
|
use "nvim-telescope/telescope.nvim"
|
||||||
|
|
||||||
-- Code Navigation
|
use "sakhnik/nvim-gdb"
|
||||||
use "dense-analysis/ale"
|
|
||||||
use "nathanmsmith/nvim-ale-diagnostic"
|
|
||||||
use "junegunn/fzf"
|
|
||||||
use "nvim-telescope/telescope.nvim"
|
|
||||||
|
|
||||||
-- Postman like features
|
-- Postman like features
|
||||||
use "NTBBloodbath/rest.nvim"
|
use "NTBBloodbath/rest.nvim"
|
||||||
|
|
||||||
-- Obsidian / Roam like features
|
-- Obsidian / Roam like features
|
||||||
-- use "lervag/wiki.vim"
|
-- use "lervag/wiki.vim"
|
||||||
|
|
||||||
-- Lsp Errors
|
-- Lsp Errors
|
||||||
use "folke/lsp-colors.nvim"
|
use "folke/lsp-colors.nvim"
|
||||||
use "onsails/lspkind-nvim"
|
use "onsails/lspkind-nvim"
|
||||||
use {
|
use {
|
||||||
"folke/trouble.nvim",
|
"folke/trouble.nvim",
|
||||||
requires = "kyazdani42/nvim-web-devicons",
|
requires = "kyazdani42/nvim-web-devicons",
|
||||||
config = function()
|
config = function()
|
||||||
require("trouble").setup()
|
require("trouble").setup()
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Syntax / Autocomplete
|
||||||
|
use "neovim/nvim-lspconfig"
|
||||||
|
-- use "github/copilot.vim"
|
||||||
|
use "hrsh7th/nvim-cmp"
|
||||||
|
use "hrsh7th/cmp-nvim-lsp"
|
||||||
|
use "hrsh7th/cmp-nvim-lua"
|
||||||
|
use "hrsh7th/cmp-path"
|
||||||
|
use "hrsh7th/cmp-calc"
|
||||||
|
use "hrsh7th/cmp-buffer"
|
||||||
|
use "hrsh7th/cmp-cmdline"
|
||||||
|
use "L3MON4D3/LuaSnip"
|
||||||
|
use "saadparwaiz1/cmp_luasnip"
|
||||||
|
use "rafamadriz/friendly-snippets"
|
||||||
|
|
||||||
|
use "beyondmarc/glsl.vim"
|
||||||
|
|
||||||
|
use "tpope/vim-commentary"
|
||||||
|
|
||||||
|
use "williamboman/nvim-lsp-installer"
|
||||||
|
use "nvim-lua/lsp-status.nvim"
|
||||||
|
use "windwp/nvim-autopairs"
|
||||||
|
use "neoclide/jsonc.vim"
|
||||||
|
use {
|
||||||
|
"nvim-treesitter/nvim-treesitter",
|
||||||
|
run = ":TSUpdate"
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Preview Markdown
|
||||||
|
use "ellisonleao/glow.nvim"
|
||||||
|
|
||||||
|
-- Autoformat
|
||||||
|
use "sbdchd/neoformat"
|
||||||
|
-- use "lukas-reineke/format.nvim"
|
||||||
|
|
||||||
|
-- General Popup Window
|
||||||
|
use "akinsho/nvim-toggleterm.lua"
|
||||||
|
|
||||||
|
-- Database Feature
|
||||||
|
use "tpope/vim-dadbod"
|
||||||
|
use "kristijanhusak/vim-dadbod-ui"
|
||||||
end
|
end
|
||||||
}
|
)
|
||||||
|
|
||||||
-- Syntax / Autocomplete
|
|
||||||
use "neovim/nvim-lspconfig"
|
|
||||||
-- use "github/copilot.vim"
|
|
||||||
use "hrsh7th/nvim-cmp"
|
|
||||||
use "hrsh7th/cmp-nvim-lsp"
|
|
||||||
use "hrsh7th/cmp-nvim-lua"
|
|
||||||
use "hrsh7th/cmp-path"
|
|
||||||
use "hrsh7th/cmp-calc"
|
|
||||||
use "hrsh7th/cmp-buffer"
|
|
||||||
use "hrsh7th/cmp-cmdline"
|
|
||||||
use "L3MON4D3/LuaSnip"
|
|
||||||
use "saadparwaiz1/cmp_luasnip"
|
|
||||||
use "rafamadriz/friendly-snippets"
|
|
||||||
|
|
||||||
use "beyondmarc/glsl.vim"
|
|
||||||
|
|
||||||
use "tpope/vim-commentary"
|
|
||||||
|
|
||||||
use "williamboman/nvim-lsp-installer"
|
|
||||||
use "nvim-lua/lsp-status.nvim"
|
|
||||||
use "windwp/nvim-autopairs"
|
|
||||||
use "neoclide/jsonc.vim"
|
|
||||||
use {
|
|
||||||
'nvim-treesitter/nvim-treesitter',
|
|
||||||
run = ':TSUpdate'
|
|
||||||
}
|
|
||||||
|
|
||||||
-- Preview Markdown
|
|
||||||
use "ellisonleao/glow.nvim"
|
|
||||||
|
|
||||||
-- Autoformat
|
|
||||||
use "sbdchd/neoformat"
|
|
||||||
-- use "lukas-reineke/format.nvim"
|
|
||||||
|
|
||||||
-- General Popup Window
|
|
||||||
use "akinsho/nvim-toggleterm.lua"
|
|
||||||
|
|
||||||
-- Database Feature
|
|
||||||
use "tpope/vim-dadbod"
|
|
||||||
use "kristijanhusak/vim-dadbod-ui"
|
|
||||||
|
|
||||||
end)
|
|
||||||
|
Loading…
Reference in New Issue
Block a user