From 0df8bf192d424e273ed7fd033268e87e2e4f5f8d Mon Sep 17 00:00:00 2001 From: Matt Anderson Date: Mon, 30 Mar 2026 11:21:15 -0500 Subject: [PATCH] Remove headlines from neovim --- nvim/.config/nvim/lua/plugins.lua | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/nvim/.config/nvim/lua/plugins.lua b/nvim/.config/nvim/lua/plugins.lua index 34804d7..898e647 100644 --- a/nvim/.config/nvim/lua/plugins.lua +++ b/nvim/.config/nvim/lua/plugins.lua @@ -73,9 +73,6 @@ require('lazy').setup({ -- 'folke/which-key.nvim', { "nvim-orgmode/orgmode", - dependencies = { - "lukas-reineke/headlines.nvim", - }, event = 'VeryLazy', ft = { 'org' }, config = function() @@ -106,16 +103,6 @@ require('lazy').setup({ }, } }) - - require("headlines").setup({ - org = { - fat_headlines = false, -- ← no more huge blocks - headline_highlights = { "Headline1", "Headline2", "Headline3", "Headline4" }, - quote_string = "│", -- thinner vertical bar for quotes (optional but nicer) - quote_highlight = "Quote", - }, - }) - end, }, -- Study