Add plugins and customizations

This commit is contained in:
gmcmillan82 2024-05-13 19:26:19 +02:00
parent 5aeddfdd5d
commit 9d1bfea5a4
7 changed files with 82 additions and 4 deletions

View file

@ -2,4 +2,22 @@
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}
return {
vim.keymap.set('n', '<space>fb', ':Telescope file_browser path=%:p:h select_buffer=true<CR>'),
vim.keymap.set('n', '<space>ng', ':Neogit cwd=%:p:h<CR>'),
require('mini.surround').setup(),
require('mini.pairs').setup(),
require('mini.indentscope').setup {
options = { try_as_border = true },
symbol = '',
draw = {
delay = 200,
animation = function()
return 1
end,
},
},
}