diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index cddaa0e..1c1d17b 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -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 }) diff --git a/nvim/lua/plugins/nvim-biscuits.lua b/nvim/lua/plugins/nvim-biscuits.lua deleted file mode 100644 index 91b335e..0000000 --- a/nvim/lua/plugins/nvim-biscuits.lua +++ /dev/null @@ -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 -}