From 5c531443b4f10809e4f7f973035fe83fcd14b433 Mon Sep 17 00:00:00 2001 From: CronyAkatsuki Date: Fri, 18 Oct 2024 17:19:34 +0200 Subject: [PATCH] Generic update. --- after/plugin/bare.lua | 3 +++ lua/crony/lazy.lua | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 after/plugin/bare.lua diff --git a/after/plugin/bare.lua b/after/plugin/bare.lua new file mode 100644 index 0000000..bea9e89 --- /dev/null +++ b/after/plugin/bare.lua @@ -0,0 +1,3 @@ +require("baredot").setup({ + git_dir = "~/.local/share/yadm/repo.git", +}) diff --git a/lua/crony/lazy.lua b/lua/crony/lazy.lua index 451230f..87806db 100644 --- a/lua/crony/lazy.lua +++ b/lua/crony/lazy.lua @@ -103,10 +103,16 @@ require("lazy").setup({ }, -- Trying out writting plugins - { dir = "~/repos/neovim/plugins/md-tools.nvim" }, + -- { dir = "~/repos/neovim/plugins/md-tools.nvim" }, -- Minimal neovim modules for a lot of things { "echasnovski/mini.nvim" }, + + -- Add support for git home management with bare repo + { "ejrichards/baredot.nvim" }, + + -- Simple remainder for keybindings for when I enter vim after a long time + { "folke/which-key.nvim" }, }, { install = { colorscheme = { "catppuccin" },