fix: biscuits bad
This commit is contained in:
parent
dab3447bad
commit
0b14709875
@ -32,6 +32,5 @@ require('lazy').setup({
|
|||||||
require('plugins.markdown-preview'), -- Open a preview of markdown rendered in a browser
|
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.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.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
|
require('plugins.twilight') -- Focus mode, dim lines around the current segment of code
|
||||||
})
|
})
|
||||||
|
|||||||
@ -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
|
|
||||||
}
|
|
||||||
Loading…
x
Reference in New Issue
Block a user