aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/editor.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/plugins/editor.lua')
-rw-r--r--.config/nvim/lua/plugins/editor.lua24
1 files changed, 24 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins/editor.lua b/.config/nvim/lua/plugins/editor.lua
new file mode 100644
index 0000000..47fe8b4
--- /dev/null
+++ b/.config/nvim/lua/plugins/editor.lua
@@ -0,0 +1,24 @@
+return {
+ -- { "Saecki/crates.nvim", config = true },
+ {
+ "nvim-telescope/telescope.nvim",
+ config = true,
+ dependencies = { "nvim-lua/plenary.nvim" },
+ },
+ {
+ "natecraddock/sessions.nvim",
+ config = true
+ },
+ {
+ "f-person/git-blame.nvim",
+ event = "VeryLazy",
+ opts = {
+ date_format = "%r"
+ },
+ },
+ {
+ "chentoast/marks.nvim",
+ -- event = "VeryLazy",
+ config = true
+ }
+}