config/nvim: add wakatime

This commit is contained in:
Sakooooo 2024-10-02 11:44:04 +04:00
parent daa3579fc4
commit 15169189d8
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -33,13 +33,13 @@ local plugins = {
-- org mode -- org mode
{ {
'nvim-orgmode/orgmode', "nvim-orgmode/orgmode",
event = 'VeryLazy', event = "VeryLazy",
config = function() config = function()
-- Setup orgmode -- Setup orgmode
require('orgmode').setup({ require("orgmode").setup({
org_agenda_files = '~/orgfiles/**/*', org_agenda_files = "~/orgfiles/**/*",
org_default_notes_file = '~/orgfiles/refile.org', org_default_notes_file = "~/orgfiles/refile.org",
}) })
-- NOTE: If you are using nvim-treesitter with `ensure_installed = "all"` option -- NOTE: If you are using nvim-treesitter with `ensure_installed = "all"` option
@ -127,9 +127,9 @@ local plugins = {
"nvim-telescope/telescope.nvim", -- optional "nvim-telescope/telescope.nvim", -- optional
"ibhagwan/fzf-lua", -- optional "ibhagwan/fzf-lua", -- optional
}, },
config = true config = true,
}, },
{ "wakatime/vim-wakatime", lazy = false },
} }
require("lazy").setup(plugins, {}) require("lazy").setup(plugins, {})