2022-03-03 13:52:43 -05:00
|
|
|
local cmd = vim.cmd
|
|
|
|
|
cmd [[packadd packer.nvim]]
|
|
|
|
|
|
|
|
|
|
return require'packer'.startup(function()
|
2022-03-15 14:37:10 -04:00
|
|
|
-- Needed to run Packer, it can run itself
|
2022-03-03 13:52:43 -05:00
|
|
|
use 'wbthomason/packer.nvim'
|
2022-03-15 14:37:10 -04:00
|
|
|
|
|
|
|
|
-- Wakatime Tracking
|
2022-03-03 13:52:43 -05:00
|
|
|
use 'wakatime/vim-wakatime'
|
2022-03-15 14:37:10 -04:00
|
|
|
|
|
|
|
|
-- Nvim Tree File Manager on the Left
|
2022-03-03 13:52:43 -05:00
|
|
|
use 'kyazdani42/nvim-tree.lua'
|
2022-03-15 14:37:10 -04:00
|
|
|
|
2022-03-03 13:52:43 -05:00
|
|
|
use 'nvim-treesitter/nvim-treesitter'
|
2022-03-15 14:37:10 -04:00
|
|
|
|
2022-03-03 13:52:43 -05:00
|
|
|
use 'sheerun/vim-polyglot'
|
2022-03-15 14:37:10 -04:00
|
|
|
|
2022-03-03 13:52:43 -05:00
|
|
|
use 'tjdevries/colorbuddy.nvim'
|
2022-03-15 14:37:10 -04:00
|
|
|
|
2022-03-03 13:52:43 -05:00
|
|
|
use 'bkegley/gloombuddy'
|
2022-03-15 14:37:10 -04:00
|
|
|
|
2022-03-03 13:52:43 -05:00
|
|
|
use {'prettier/vim-prettier', run = 'yarn install' }
|
2022-03-15 14:37:10 -04:00
|
|
|
|
2022-03-03 13:52:43 -05:00
|
|
|
use 'lukas-reineke/indent-blankline.nvim'
|
2022-03-15 14:37:10 -04:00
|
|
|
|
2022-03-03 13:52:43 -05:00
|
|
|
use 'simrat39/symbols-outline.nvim'
|
2022-03-15 14:37:10 -04:00
|
|
|
|
2022-03-03 13:52:43 -05:00
|
|
|
use 'kyazdani42/nvim-web-devicons'
|
2022-03-15 14:37:10 -04:00
|
|
|
|
2022-03-03 13:52:43 -05:00
|
|
|
use 'liuchengxu/vista.vim'
|
2022-03-15 14:37:10 -04:00
|
|
|
|
2022-03-08 16:14:59 -05:00
|
|
|
use 'karb94/neoscroll.nvim'
|
2022-03-15 14:37:10 -04:00
|
|
|
|
2022-03-03 13:52:43 -05:00
|
|
|
use 'nvim-lua/plenary.nvim'
|
2022-03-15 14:37:10 -04:00
|
|
|
|
|
|
|
|
-- Allow Popups for Telescope etc
|
2022-03-03 13:52:43 -05:00
|
|
|
use 'nvim-lua/popup.nvim'
|
2022-06-30 14:16:47 -04:00
|
|
|
-- Various Color Schemes
|
2022-03-03 13:52:43 -05:00
|
|
|
use 'tanvirtin/monokai.nvim'
|
2022-03-15 14:37:10 -04:00
|
|
|
use 'Mofiqul/dracula.nvim'
|
2022-03-03 13:52:43 -05:00
|
|
|
use 'lunarvim/colorschemes'
|
|
|
|
|
use { 'rose-pine/neovim', as = 'rose-pine' }
|
|
|
|
|
use 'folke/tokyonight.nvim'
|
2022-03-15 14:37:10 -04:00
|
|
|
|
|
|
|
|
-- Easy Way to install Language Servers
|
2022-03-03 13:52:43 -05:00
|
|
|
use 'williamboman/nvim-lsp-installer'
|
2022-03-15 14:37:10 -04:00
|
|
|
|
|
|
|
|
-- Config for Language Servers
|
2022-03-03 13:52:43 -05:00
|
|
|
use 'neovim/nvim-lspconfig'
|
2022-03-15 14:37:10 -04:00
|
|
|
|
|
|
|
|
-- Navigate Tmux and Vim!
|
|
|
|
|
use 'christoomey/vim-tmux-navigator'
|
|
|
|
|
|
|
|
|
|
-- Easy Access to Vim keymappings
|
2022-03-08 16:14:59 -05:00
|
|
|
use {
|
|
|
|
|
'sudormrfbin/cheatsheet.nvim',
|
|
|
|
|
requires = {
|
|
|
|
|
{'nvim-telescope/telescope.nvim'},
|
|
|
|
|
{'nvim-lua/popup.nvim'},
|
|
|
|
|
{'nvim-lua/plenary.nvim'},
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-06-30 14:16:47 -04:00
|
|
|
-- Terminal Integration
|
|
|
|
|
use {"akinsho/toggleterm.nvim",
|
|
|
|
|
tag = 'v1.*',
|
|
|
|
|
config = function()
|
|
|
|
|
require('toggleterm').setup({
|
|
|
|
|
shell = '/usr/bin/local/fish',
|
|
|
|
|
})
|
|
|
|
|
end,
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-03 13:52:43 -05:00
|
|
|
use {
|
2022-06-29 17:16:38 -04:00
|
|
|
'feline-nvim/feline.nvim',
|
2022-03-03 13:52:43 -05:00
|
|
|
requires = { 'kyazdani42/nvim-web-devicons' },
|
|
|
|
|
}
|
2022-03-15 14:37:10 -04:00
|
|
|
|
|
|
|
|
-- Signs for Git Status Information
|
2022-03-03 13:52:43 -05:00
|
|
|
use {
|
|
|
|
|
'lewis6991/gitsigns.nvim',
|
|
|
|
|
requires = { 'nvim-lua/plenary.nvim' },
|
|
|
|
|
}
|
2022-03-15 14:37:10 -04:00
|
|
|
|
|
|
|
|
-- The Dashboard
|
2022-03-03 13:52:43 -05:00
|
|
|
use {
|
|
|
|
|
'goolord/alpha-nvim',
|
|
|
|
|
requires = { 'kyazdani42/nvim-web-devicons' },
|
|
|
|
|
}
|
|
|
|
|
use {
|
|
|
|
|
"nvim-telescope/telescope.nvim",
|
|
|
|
|
requires = {
|
|
|
|
|
"nvim-lua/popup.nvim",
|
|
|
|
|
"nvim-lua/plenary.nvim",
|
|
|
|
|
},
|
|
|
|
|
config = function()
|
|
|
|
|
require "plugins/telescope"
|
|
|
|
|
end,
|
|
|
|
|
}
|
|
|
|
|
use {
|
|
|
|
|
'windwp/nvim-autopairs',
|
|
|
|
|
config = function()
|
|
|
|
|
require('nvim-autopairs').setup()
|
|
|
|
|
end
|
|
|
|
|
}
|
|
|
|
|
use {
|
|
|
|
|
'hrsh7th/nvim-cmp',
|
|
|
|
|
requires = {
|
|
|
|
|
'L3MON4D3/LuaSnip',
|
|
|
|
|
'hrsh7th/cmp-nvim-lsp',
|
2022-06-29 17:16:38 -04:00
|
|
|
'quangnguyen30192/cmp-nvim-ultisnips',
|
|
|
|
|
'hrsh7th/cmp-calc',
|
|
|
|
|
'f3fora/cmp-spell',
|
|
|
|
|
'hrsh7th/cmp-emoji',
|
|
|
|
|
'hrsh7th/cmp-look',
|
2022-03-03 13:52:43 -05:00
|
|
|
'hrsh7th/cmp-path',
|
|
|
|
|
'hrsh7th/cmp-buffer',
|
|
|
|
|
'saadparwaiz1/cmp_luasnip',
|
2022-06-29 17:16:38 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
use {
|
|
|
|
|
'tzachar/cmp-tabnine',
|
|
|
|
|
run = './install.sh',
|
|
|
|
|
requires = 'hrsh7th/nvim-cmp'
|
2022-03-03 13:52:43 -05:00
|
|
|
}
|
2022-06-29 17:16:38 -04:00
|
|
|
use 'chentoast/marks.nvim'
|
|
|
|
|
|
2022-03-03 13:52:43 -05:00
|
|
|
end)
|