Use fugitive and reformat

This commit is contained in:
Marco 2023-10-16 17:14:55 +02:00
parent c4a2316af9
commit c99ce05989
2 changed files with 5 additions and 2 deletions

View File

@ -10,7 +10,6 @@ vim.keymap.set('n', '<leader>fs', function()
if (searchstring == nil or searchstring == '') then if (searchstring == nil or searchstring == '') then
return return
end end
builtin.grep_string({ search = searchstring }); builtin.grep_string({ search = searchstring });
end) end)

View File

@ -5,6 +5,10 @@ return require('packer').startup(function(use)
use { 'nvim-telescope/telescope.nvim', use { 'nvim-telescope/telescope.nvim',
requires = { { 'nvim-lua/plenary.nvim' } } requires = { { 'nvim-lua/plenary.nvim' } }
} }
-- fugitive
use 'tpope/vim-fugitive'
-- Packer can manage itself -- Packer can manage itself
use 'wbthomason/packer.nvim' use 'wbthomason/packer.nvim'
use 'mbbill/undotree' use 'mbbill/undotree'