Updates keybindings and disables Lazy checker

This commit is contained in:
Dennis Schoepf 2025-01-27 22:48:53 +01:00
parent ac2965506b
commit a8d76f7f4d
3 changed files with 6 additions and 3 deletions

View file

@ -75,5 +75,5 @@ require("lazy").setup({
-- colorscheme that will be used when installing plugins. -- colorscheme that will be used when installing plugins.
install = { colorscheme = { "rose-pine" } }, install = { colorscheme = { "rose-pine" } },
-- automatically check for plugin updates -- automatically check for plugin updates
checker = { enabled = true }, checker = { enabled = false },
}) })

View file

@ -1,5 +1,8 @@
return { return {
"nvim-orgmode/orgmode", "nvim-orgmode/orgmode",
dependencies = {
"akinsho/org-bullets.nvim",
},
event = "VeryLazy", event = "VeryLazy",
ft = { "org" }, ft = { "org" },
config = function() config = function()
@ -21,6 +24,8 @@ return {
}, },
}) })
require("org-bullets").setup()
vim.api.nvim_create_autocmd("FileType", { vim.api.nvim_create_autocmd("FileType", {
pattern = "org", pattern = "org",
callback = function() callback = function()

View file

@ -179,7 +179,5 @@ return {
mode = "n", mode = "n",
}, },
{ "<leader>xr", "<cmd>source $MYVIMRC<cr>", desc = "Reload config", mode = "n" }, { "<leader>xr", "<cmd>source $MYVIMRC<cr>", desc = "Reload config", mode = "n" },
{ "<leader>do", "<cmd>DiffviewOpen<cr>", desc = "Open diff view", mode = "n" },
{ "<leader>dh", "<cmd>DiffviewFileHistory<cr>", desc = "Open file history diff", mode = "n" },
}, },
} }