mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
feat(extras): add workflow.hardtime and workflow.precognition
This commit is contained in:
parent
5e7da4384d
commit
77477a3807
2 changed files with 26 additions and 0 deletions
14
lua/lazyvim/plugins/extras/workflow/hardtime.lua
Normal file
14
lua/lazyvim/plugins/extras/workflow/hardtime.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
return {
|
||||
"m4xshen/hardtime.nvim",
|
||||
lazy = false,
|
||||
dependencies = { "MunifTanjim/nui.nvim" },
|
||||
opts = {
|
||||
disabled_keys = {
|
||||
["<Insert>"] = { "", "i" },
|
||||
["<Home>"] = { "", "i" },
|
||||
["<End>"] = { "", "i" },
|
||||
["<PageUp>"] = { "", "i" },
|
||||
["<PageDown>"] = { "", "i" },
|
||||
},
|
||||
},
|
||||
}
|
||||
12
lua/lazyvim/plugins/extras/workflow/precognition.lua
Normal file
12
lua/lazyvim/plugins/extras/workflow/precognition.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
return {
|
||||
"tris203/precognition.nvim",
|
||||
--event = "VeryLazy",
|
||||
opts = {
|
||||
startVisible = true,
|
||||
showBlankVirtLine = true,
|
||||
highlightColor = { link = "Comment" },
|
||||
disabled_fts = {
|
||||
"startify",
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue