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

@ -22,7 +22,7 @@ local plugins = {
-- colorscheme -- colorscheme
-- { "bluz71/vim-moonfly-colors", name = "moonfly", lazy = false, priority = 1000 }, -- { "bluz71/vim-moonfly-colors", name = "moonfly", lazy = false, priority = 1000 },
"savq/melange-nvim", "savq/melange-nvim",
-- default bar only looks good on linux -- default bar only looks good on linux
"nvim-lualine/lualine.nvim", "nvim-lualine/lualine.nvim",
@ -32,24 +32,24 @@ local plugins = {
"windwp/nvim-ts-autotag", "windwp/nvim-ts-autotag",
-- 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
-- add `org` to ignore_install -- add `org` to ignore_install
-- require('nvim-treesitter.configs').setup({ -- require('nvim-treesitter.configs').setup({
-- ensure_installed = 'all', -- ensure_installed = 'all',
-- ignore_install = { 'org' }, -- ignore_install = { 'org' },
-- }) -- })
end, end,
}, },
-- like fzf but goofier -- like fzf but goofier
{ {
@ -116,20 +116,20 @@ local plugins = {
-- floating terminal, useful to mimic/be better than vscode -- floating terminal, useful to mimic/be better than vscode
"voldikss/vim-floaterm", "voldikss/vim-floaterm",
-- git client -- git client
{ {
"NeogitOrg/neogit", "NeogitOrg/neogit",
dependencies = { dependencies = {
"nvim-lua/plenary.nvim", -- required "nvim-lua/plenary.nvim", -- required
"sindrets/diffview.nvim", -- optional - Diff integration "sindrets/diffview.nvim", -- optional - Diff integration
-- Only one of these is needed, not both.
"nvim-telescope/telescope.nvim", -- optional
"ibhagwan/fzf-lua", -- optional
},
config = true
},
-- Only one of these is needed, not both.
"nvim-telescope/telescope.nvim", -- optional
"ibhagwan/fzf-lua", -- optional
},
config = true,
},
{ "wakatime/vim-wakatime", lazy = false },
} }
require("lazy").setup(plugins, {}) require("lazy").setup(plugins, {})