From e8b724edef9c3a2c372f1922f4082a0788b10d35 Mon Sep 17 00:00:00 2001 From: triethyl Date: Sat, 6 Sep 2025 14:49:43 -0400 Subject: neovim: added calendar --- pkgs/custom-neovim/config/lua/plugins/calendar.lua | 8 ++++++++ pkgs/custom-neovim/default.nix | 1 + pkgs/custom-neovim/todo.md | 2 ++ 3 files changed, 11 insertions(+) create mode 100644 pkgs/custom-neovim/config/lua/plugins/calendar.lua (limited to 'pkgs/custom-neovim') diff --git a/pkgs/custom-neovim/config/lua/plugins/calendar.lua b/pkgs/custom-neovim/config/lua/plugins/calendar.lua new file mode 100644 index 0000000..6bca188 --- /dev/null +++ b/pkgs/custom-neovim/config/lua/plugins/calendar.lua @@ -0,0 +1,8 @@ +return { + "calendar.vim", + lazy = true, + cmd = "Calendar", + before = function () + vim.cmd.let("g:calendar_cache_directory = '~/Sync/.calendar.vim'") + end +} diff --git a/pkgs/custom-neovim/default.nix b/pkgs/custom-neovim/default.nix index 1ee1b91..abaf554 100644 --- a/pkgs/custom-neovim/default.nix +++ b/pkgs/custom-neovim/default.nix @@ -38,6 +38,7 @@ inputs.mnw.lib.wrap pkgs { auto-session zoxide-vim vim-nix # Indentation for nix files + calendar-vim # Git Plugins mini-git diff --git a/pkgs/custom-neovim/todo.md b/pkgs/custom-neovim/todo.md index c74dd0c..fa68f6b 100644 --- a/pkgs/custom-neovim/todo.md +++ b/pkgs/custom-neovim/todo.md @@ -2,6 +2,8 @@ - Make mini pick buffer list show modified status - research nvim exrc for project specific config (also use to make lua ls stop showing warnings in nvim config) +- add markdown keybinds only in markdown files +- make markdown preview show current line in normal mode ## Eventually if Possible -- cgit v1.2.3