|
|
@ -57,6 +57,13 @@ return require('packer').startup(function() |
|
|
|
|
|
|
|
use { 'nvim-treesitter/nvim-treesitter' } |
|
|
|
|
|
|
|
use { |
|
|
|
'nvim-treesitter/nvim-treesitter-context', |
|
|
|
config = function () |
|
|
|
require('config.treesitter-context') |
|
|
|
end |
|
|
|
} |
|
|
|
|
|
|
|
use { |
|
|
|
'theprimeagen/harpoon', |
|
|
|
config = function () |
|
|
@ -147,6 +154,16 @@ return require('packer').startup(function() |
|
|
|
end |
|
|
|
} |
|
|
|
|
|
|
|
use { |
|
|
|
'rcarriga/nvim-notify', |
|
|
|
config = function () |
|
|
|
require('notify').setup({ |
|
|
|
background_color = '#000000', |
|
|
|
timeout = 3 |
|
|
|
}) |
|
|
|
end |
|
|
|
} |
|
|
|
|
|
|
|
-- CMD and search at the top |
|
|
|
use { |
|
|
|
'folke/noice.nvim', |
|
|
@ -159,15 +176,6 @@ return require('packer').startup(function() |
|
|
|
end |
|
|
|
} |
|
|
|
|
|
|
|
use { |
|
|
|
'rcarriga/nvim-notify', |
|
|
|
config = function () |
|
|
|
require('notify').setup({ |
|
|
|
background_color = '#000000' |
|
|
|
}) |
|
|
|
end |
|
|
|
} |
|
|
|
|
|
|
|
-- DB manager |
|
|
|
use { |
|
|
|
'kristijanhusak/vim-dadbod-ui', |
|
|
|