|
|
|
@ -52,7 +52,6 @@ return packer.startup(function(use)
|
|
|
|
|
use "moll/vim-bbye"
|
|
|
|
|
use "nvim-lualine/lualine.nvim"
|
|
|
|
|
use "akinsho/toggleterm.nvim"
|
|
|
|
|
use "ahmedkhalf/project.nvim"
|
|
|
|
|
use "lewis6991/impatient.nvim"
|
|
|
|
|
use "lukas-reineke/indent-blankline.nvim"
|
|
|
|
|
use "goolord/alpha-nvim"
|
|
|
|
@ -60,8 +59,10 @@ return packer.startup(function(use)
|
|
|
|
|
use "folke/which-key.nvim"
|
|
|
|
|
|
|
|
|
|
-- Colorschemes
|
|
|
|
|
-- use "lunarvim/colorschemes" -- A bunch of colorschemes you can try out
|
|
|
|
|
use "lunarvim/darkplus.nvim"
|
|
|
|
|
use "lunarvim/colorschemes" -- A bunch of colorschemes you can try out
|
|
|
|
|
use "arcticicestudio/nord-vim"
|
|
|
|
|
-- use "lunarvim/darkplus.nvim"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- cmp plugins
|
|
|
|
|
use "hrsh7th/nvim-cmp" -- The completion plugin
|
|
|
|
@ -94,6 +95,18 @@ return packer.startup(function(use)
|
|
|
|
|
-- Git
|
|
|
|
|
use "lewis6991/gitsigns.nvim"
|
|
|
|
|
|
|
|
|
|
-- project
|
|
|
|
|
use {
|
|
|
|
|
"ahmedkhalf/project.nvim",
|
|
|
|
|
config = function()
|
|
|
|
|
require("project_nvim").setup {
|
|
|
|
|
-- your configuration comes here
|
|
|
|
|
-- or leave it empty to use the default settings
|
|
|
|
|
-- refer to the configuration section below
|
|
|
|
|
}
|
|
|
|
|
end
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-- Automatically set up your configuration after cloning packer.nvim
|
|
|
|
|
-- Put this at the end after all plugins
|
|
|
|
|
if PACKER_BOOTSTRAP then
|
|
|
|
|