diff options
| author | Jean-Pierre Appel <jeanpierre.appel01@gmail.com> | 2023-12-17 17:17:40 -0500 |
|---|---|---|
| committer | Jean-Pierre Appel <jeanpierre.appel01@gmail.com> | 2023-12-17 17:17:40 -0500 |
| commit | 47d61c1cb5af62cc75218661dfc7c3a0dc3378a8 (patch) | |
| tree | 906f5e4b1e6bb7b9eaea0fb45a9e7af82baff609 /nvim/lua/plugins/fugitive.lua | |
| parent | 00fa9fb23ee3de7b60f0b5a88f905f3bf14a1485 (diff) | |
made nvim keymap locations sensible, add harpoon
Keymaps are now stored in the lua/plugins/<Plugin>.lua or lua/keymap.lua
Installed harpoon v2
Diffstat (limited to 'nvim/lua/plugins/fugitive.lua')
| -rw-r--r-- | nvim/lua/plugins/fugitive.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/nvim/lua/plugins/fugitive.lua b/nvim/lua/plugins/fugitive.lua new file mode 100644 index 0000000..a203ea8 --- /dev/null +++ b/nvim/lua/plugins/fugitive.lua @@ -0,0 +1,6 @@ +return { + 'tpope/vim-fugitive', -- close to native git command integrations + keys = { + {"<leader>gs", vim.cmd.Git, desc = "Git Status"} + } +} |
