Files
nvim/lua/plugins/plugins.lua

143 lines
3.2 KiB
Lua
Raw Permalink Normal View History

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
2022-09-08 12:21:50 -04:00
----------------------------------------------------------------
-- LSP and Autocomplete Plugins
-- They should be pulled first!
-----------------------------------------------------------------
-- Easy Way to install Language Servers
2022-11-12 07:48:04 -05:00
use {
'williamboman/mason.nvim',
'williamboman/mason-lspconfig.nvim',
'neovim/nvim-lspconfig',
}
2022-09-08 12:21:50 -04:00
-- Neovim Autocomplete with LSP
use {
'hrsh7th/nvim-cmp',
requires = {
'neovim/nvim-lspconfig',
'L3MON4D3/LuaSnip',
'hrsh7th/cmp-nvim-lsp',
'hrsh7th/cmp-path',
'hrsh7th/cmp-buffer',
'hrsh7th/cmp-cmdline',
'hrsh7th/nvim-cmp',
'saadparwaiz1/cmp_luasnip',
}
}
use ({
2023-01-24 17:12:53 +00:00
'L3MON4D3/LuaSnip', tag = "v1.1.0",
2022-09-08 12:21:50 -04:00
requires = {
'saadparwaiz1/cmp_luasnip'
}
})
2022-09-08 12:21:50 -04:00
-- Treesitter interface
use {
'nvim-treesitter/nvim-treesitter',
2022-11-09 16:48:39 -05:00
run = function() require('nvim-treesitter.install').update({ with_sync = true }) end,
2022-09-08 12:21:50 -04:00
}
-- Null-LS
use'jose-elias-alvarez/null-ls.nvim'
------------------------------------------------------------
-- General Functionality
------------------------------------------------------------
2022-09-20 16:29:49 -04:00
2022-11-12 07:48:04 -05:00
2022-09-08 12:21:50 -04:00
-- Snippets
use 'rafamadriz/friendly-snippets'
-- Trouble Shows Errors with Files.
use {
"folke/trouble.nvim",
requires = "kyazdani42/nvim-web-devicons",
config = function()
require("trouble").setup {
}
end
}
2022-11-12 07:48:04 -05:00
-- Manage all your Keymaps!
use {
"lazytanuki/nvim-mapper",
config = function() require("nvim-mapper").setup{} end,
before = "telescope.nvim"
}
-- Close your brackets easily
2022-09-08 12:21:50 -04:00
use {
'windwp/nvim-autopairs',
config = function()
2022-09-20 16:29:49 -04:00
require('nvim-autopairs').setup({
})
2022-09-08 12:21:50 -04:00
end
}
-- Which Key
use {
"folke/which-key.nvim",
config = function()
require("which-key").setup {
}
end
}
2022-09-08 12:21:50 -04:00
use 'rcarriga/nvim-notify'
---------------------------------------------------------
-- Text, Icons, Symbols
----------------------------------------------------------
2022-07-20 14:53:53 -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-08 16:14:59 -05:00
use 'karb94/neoscroll.nvim'
2022-03-15 14:37:10 -04:00
-- Allow Popups for Telescope etc
2022-11-09 16:48:39 -05:00
use 'nvim-lua/popup.nvim'
2022-09-20 16:29:49 -04:00
use 'nvim-lua/plenary.nvim'
2022-09-08 12:21:50 -04:00
-- The all famous telescope
2022-11-09 16:48:39 -05:00
use {
'nvim-telescope/telescope.nvim', tag = '0.1.0',
requires = 'nvim-lua/plenary.nvim',
config = function()
require("telescope").setup({
})
end
}
use {
"nvim-telescope/telescope-file-browser.nvim"
}
2022-07-14 18:51:47 -04:00
-----------------------------------------------------------
2022-09-08 12:21:50 -04:00
-- Various Color Schemes, Dashboard, etc
2022-07-14 18:51:47 -04:00
-----------------------------------------------------------
2022-03-15 14:37:10 -04:00
use 'Mofiqul/dracula.nvim'
2022-03-03 13:52:43 -05:00
use 'lunarvim/colorschemes'
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' },
}
end)