diff options
author | jakobst1n <jakob.stendahl@outlook.com> | 2024-02-22 11:19:11 +0100 |
---|---|---|
committer | jakobst1n <jakob.stendahl@outlook.com> | 2024-02-22 11:20:18 +0100 |
commit | 966eeda6a0a29459e5a308da1f2578b33ceacfc3 (patch) | |
tree | 7ce167266785d3bba39a4e9434b4e693926fbdae /Common/nvim/lua | |
parent | 3322e2263a03d6c62e65bd5224723ce0f4dad145 (diff) | |
download | dotfiles-966eeda6a0a29459e5a308da1f2578b33ceacfc3.tar.gz dotfiles-966eeda6a0a29459e5a308da1f2578b33ceacfc3.zip |
Add fugitive
Diffstat (limited to 'Common/nvim/lua')
-rwxr-xr-x | Common/nvim/lua/plugins.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Common/nvim/lua/plugins.lua b/Common/nvim/lua/plugins.lua index 6d9cf9a..b08c2af 100755 --- a/Common/nvim/lua/plugins.lua +++ b/Common/nvim/lua/plugins.lua @@ -25,6 +25,9 @@ return require('packer').startup(function(use) map("n", "<leader>s", ":Gitsigns toggle_current_line_blame<cr>", silentnoremap) end, } + use { + 'tpope/vim-fugitive', + } -- fzf (Fuzzy finder for various things) use { |