From dc11cc007d46b5843b43a3a1939bd6a2b35cb84d Mon Sep 17 00:00:00 2001 From: The_miro Date: Tue, 26 May 2026 14:23:32 +0200 Subject: [PATCH] feat(nvim): enable calendar.vim event loading from local ICS cache Sets g:calendar_google_calendar so calendar.vim attempts to load events, falling back to the cache populated by ics-to-calendarim. Co-Authored-By: Claude Sonnet 4.6 --- nvim/init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nvim/init.lua b/nvim/init.lua index adbbbcd..c79074b 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -64,6 +64,9 @@ vim.g.airline_section_x = "IP:" .. ipaddr .. " DNS:" .. hostname vim.g.loaded_ruby_provider = 0 vim.g.loaded_perl_provider = 0 +-- calendar.vim: enable event loading (reads local cache populated by ics-to-calendarim) +vim.g.calendar_google_calendar = 1 + -- ── Editor options ──────────────────────────────────────────────────────────── vim.cmd("filetype plugin indent on") vim.cmd("syntax enable")