Compare commits
No commits in common. "ee9de435c71f3e602cda420c4fb1250059b747e3" and "fd1fe4866a2dc2a6630136bf45149038a330c0e2" have entirely different histories.
ee9de435c7
...
fd1fe4866a
1 changed files with 25 additions and 4 deletions
|
|
@ -231,6 +231,30 @@ return {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"mluders/comfy-line-numbers.nvim",
|
||||||
|
config = function()
|
||||||
|
require("comfy-line-numbers").setup({
|
||||||
|
hidden_file_types = {}
|
||||||
|
})
|
||||||
|
|
||||||
|
vim.api.nvim_create_autocmd("CmdlineEnter", {
|
||||||
|
group = "ComfyLineNumbers",
|
||||||
|
pattern = "*",
|
||||||
|
callback = function()
|
||||||
|
pcall(require("comfy-line-numbers").disable_line_numbers)
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
||||||
|
vim.api.nvim_create_autocmd("CmdlineLeave", {
|
||||||
|
group = "ComfyLineNumbers",
|
||||||
|
pattern = "*",
|
||||||
|
callback = function()
|
||||||
|
pcall(require("comfy-line-numbers").enable_line_numbers)
|
||||||
|
end
|
||||||
|
})
|
||||||
|
end
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"winston0410/range-highlight.nvim",
|
"winston0410/range-highlight.nvim",
|
||||||
event = { "CmdlineEnter" },
|
event = { "CmdlineEnter" },
|
||||||
|
|
@ -505,10 +529,7 @@ return {
|
||||||
local path = spec.dir / spec.id
|
local path = spec.dir / spec.id
|
||||||
return path:with_suffix(".md")
|
return path:with_suffix(".md")
|
||||||
end,
|
end,
|
||||||
link = {
|
preferred_link_style = "wiki",
|
||||||
format = "shortest",
|
|
||||||
style = "wiki",
|
|
||||||
},
|
|
||||||
frontmatter = {
|
frontmatter = {
|
||||||
enabled = false,
|
enabled = false,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue