aboutsummaryrefslogtreecommitdiff
path: root/nvim
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-08-05 22:55:20 +0200
committerThomas Schmucker <ts@its1.de>2026-08-05 22:55:20 +0200
commitdbb7765982ed5d510060d5abfec7d9ebd9cd344a (patch)
treefc43e6aa9c80a8c7adb21f98463cdd7159c1b2fc /nvim
parentb3edd5699447fd9904a74641448c439016362bb2 (diff)
downloaddotfiles-dbb7765982ed5d510060d5abfec7d9ebd9cd344a.tar.gz
dotfiles-dbb7765982ed5d510060d5abfec7d9ebd9cd344a.tar.bz2
dotfiles-dbb7765982ed5d510060d5abfec7d9ebd9cd344a.zip
neovim: Aktiviere calendar-vim auch für Markdown-Dateien
Diffstat (limited to 'nvim')
-rw-r--r--nvim/lua/plugins/ui.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/lua/plugins/ui.lua b/nvim/lua/plugins/ui.lua
index 9ee68de..9794c38 100644
--- a/nvim/lua/plugins/ui.lua
+++ b/nvim/lua/plugins/ui.lua
@@ -63,7 +63,7 @@ return {
63 63
64 { 64 {
65 "mattn/calendar-vim", 65 "mattn/calendar-vim",
66 ft = "taskedit", 66 ft = { "taskedit", "markdown" },
67 config = function() 67 config = function()
68 function CalendarInsertDate(day, month, year) 68 function CalendarInsertDate(day, month, year)
69 local date = string.format("%04d-%02d-%02d", year, month, day) 69 local date = string.format("%04d-%02d-%02d", year, month, day)