dotfiles/nvim/lua/plugins/nvim-biscuits.lua
Joshua Finch dab3447bad feat: Adding new additions of:
- autopairs (trying again and kind of liking it)
- render-markdown to render markdown in editor
- twilight for dimming other lines
- nvim-biscuits

Changes to the zshrc settings to add location, color settings
environment variables, some keybindings, universal aliases for
coloration, etc.

Adding a loader.enable to the start of init.lua for faster load times
(need to benchmark this but it feels faster).
2025-07-20 14:53:21 -05:00

23 lines
624 B
Lua

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
}