feat: style improvements + md preview
This commit is contained in:
@@ -31,4 +31,26 @@ return {
|
||||
})
|
||||
end,
|
||||
},
|
||||
{
|
||||
"toppair/peek.nvim",
|
||||
event = { "VeryLazy" },
|
||||
build = "deno task --quiet build:fast",
|
||||
opts = {
|
||||
auto_load = true, -- whether to automatically load preview when
|
||||
close_on_bdelete = true,
|
||||
syntax = true,
|
||||
theme = "light", -- 'dark' or 'light'
|
||||
update_on_change = true,
|
||||
-- app = "webview", -- 'webview', 'browser', string or a table of strings
|
||||
app = { "surf" },
|
||||
filetype = { "markdown" }, -- list of filetypes to recognize as markdown
|
||||
throttle_at = 200000, -- start throttling when file exceeds this
|
||||
throttle_time = "auto", -- minimum amount of time in milliseconds
|
||||
},
|
||||
config = function(_, opts)
|
||||
require("peek").setup(opts)
|
||||
vim.api.nvim_create_user_command("PeekOpen", require("peek").open, {})
|
||||
vim.api.nvim_create_user_command("PeekClose", require("peek").close, {})
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
||||
@@ -36,7 +36,8 @@ return {
|
||||
},
|
||||
},
|
||||
{
|
||||
"ellisonleao/gruvbox.nvim",
|
||||
"dqnid/gruvbox.nvim",
|
||||
-- dir = "~/Documents/Code/gruvbox.nvim",
|
||||
priority = 1000,
|
||||
config = true,
|
||||
opts = {
|
||||
@@ -83,8 +84,8 @@ return {
|
||||
smear_insert_mode = true,
|
||||
|
||||
-- fast smear
|
||||
stiffness = 0.8, -- 0.6 [0, 1]
|
||||
trailing_stiffness = 0.5, -- 0.4 [0, 1]
|
||||
stiffness = 0.8, -- 0.6 [0, 1]
|
||||
trailing_stiffness = 0.5, -- 0.4 [0, 1]
|
||||
stiffness_insert_mode = 0.6, -- 0.4 [0, 1]
|
||||
trailing_stiffness_insert_mode = 0.6, -- 0.4 [0, 1]
|
||||
distance_stop_animating = 0.5, -- 0.1 > 0
|
||||
|
||||
Reference in New Issue
Block a user