From 0df8ed9cdcf9349bd5988270c4bf061c4555f9a2 Mon Sep 17 00:00:00 2001 From: "Radu C. Martin" Date: Thu, 27 Feb 2025 09:06:41 +0100 Subject: [PATCH] feat(waka): add wakatime plugin --- lazy-lock.json | 1 + lua/config/lazy.lua | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lazy-lock.json b/lazy-lock.json index ff68b83..f5c0b39 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -24,5 +24,6 @@ "todo-comments.nvim": { "branch": "main", "commit": "304a8d204ee787d2544d8bc23cd38d2f929e7cc5" }, "tokyonight.nvim": { "branch": "main", "commit": "057ef5d260c1931f1dffd0f052c685dcd14100a3" }, "vim-sleuth": { "branch": "master", "commit": "be69bff86754b1aa5adcbb527d7fcd1635a84080" }, + "vim-wakatime": { "branch": "master", "commit": "e46d7c4f98ee0f40782008dd60cb2a79c377fb1d" }, "which-key.nvim": { "branch": "main", "commit": "5bf7a73fe851896d5ac26d313db849bf00f45b78" } } diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index 6f0208f..9cf1eb7 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -20,7 +20,6 @@ vim.opt.rtp:prepend(lazypath) -- To update plugins you can run -- :Lazy update -- --- NOTE: Here is where you install your plugins. require('lazy').setup({ -- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link). 'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically @@ -44,6 +43,7 @@ require('lazy').setup({ -- Highlight todo, notes, etc in comments { 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } }, + { 'wakatime/vim-wakatime', lazy = false }, -- The following comments only work if you have downloaded the kickstart repo, not just copy pasted the -- init.lua. If you want these files, they are in the repository, so you can just download them and -- place them in the correct locations.