fix: biscuits bad

This commit is contained in:
Finch 2025-07-22 14:13:48 -05:00
parent dab3447bad
commit 0b14709875
2 changed files with 0 additions and 23 deletions

View File

@ -32,6 +32,5 @@ require('lazy').setup({
require('plugins.markdown-preview'), -- Open a preview of markdown rendered in a browser
require('plugins.render-markdown'), -- Render markdown directly in nvim (experimental, may take over for markdown-preview)
require('plugins.autopairs'), -- Autocomplete symbol pairs when typing (experimental)
require('plugins.nvim-biscuits'), -- Virtual text on closing tags for what the start of the block is (experimental)
require('plugins.twilight') -- Focus mode, dim lines around the current segment of code
})

View File

@ -1,22 +0,0 @@
return {
'code-biscuits/nvim-biscuits',
config = function ()
require('nvim-biscuits').setup({
default_config = {
max_length = 3,
trim_by_words = true,
min_distance = 5,
prefix_string = " 📎 ",
},
-- on_events = { 'InsertLeave', 'CursorHoldI' },
max_file_size = '250kb',
-- show_on_start = true,
cursor_line_only = true,
language_config = {
markdown = {
disabled = true
}
}
})
end
}