.dotfiles/configs/nvim/lua/core/plugins.lua

80 lines
1.8 KiB
Lua
Raw Normal View History

2022-01-26 20:42:58 +01:00
return require("packer").startup(
2022-04-25 16:23:14 +02:00
function(use)
-- Let packer manage itself
use "wbthomason/packer.nvim"
use 'lewis6991/impatient.nvim'
2022-01-26 20:42:58 +01:00
2022-04-25 16:23:14 +02:00
-- General Helper Functions
use "nvim-lua/plenary.nvim"
2022-04-23 03:41:04 +02:00
2022-04-25 16:23:14 +02:00
-- Theming Section
use "EdenEast/nightfox.nvim"
use "nvim-lualine/lualine.nvim"
2022-01-26 20:42:58 +01:00
2022-04-25 16:23:14 +02:00
-- Layout Plugins
use "kyazdani42/nvim-web-devicons"
use "kyazdani42/nvim-tree.lua"
use "nvim-lua/popup.nvim"
-- use "mhinz/vim-startify"
use 'goolord/alpha-nvim'
use { "terrortylor/nvim-comment", config = function() require('nvim_comment').setup() end }
use "windwp/nvim-autopairs"
2022-01-26 20:42:58 +01:00
2022-04-25 16:23:14 +02:00
-- Code Navigation
use "junegunn/fzf"
use "nvim-telescope/telescope.nvim"
use "gfeiyou/command-center.nvim"
2022-01-26 20:42:58 +01:00
2022-04-25 16:23:14 +02:00
-- Postman like features
-- use "NTBBloodbath/rest.nvim"
2022-01-26 20:42:58 +01:00
2022-04-25 16:23:14 +02:00
-- Obsidian / Roam like features
-- use "lervag/wiki.vim"
2022-01-26 20:42:58 +01:00
2022-04-25 16:23:14 +02:00
use "rcarriga/nvim-notify"
2022-01-26 20:42:58 +01:00
2022-04-25 16:23:14 +02:00
-- Lsp Errors
use "folke/lsp-colors.nvim"
use "kosayoda/nvim-lightbulb"
use {
"folke/trouble.nvim",
requires = "kyazdani42/nvim-web-devicons",
config = function()
require("trouble").setup {}
end
}
2022-01-26 20:42:58 +01:00
2022-04-25 16:23:14 +02:00
-- Syntax / Autocomplete
use "neovim/nvim-lspconfig"
use "hrsh7th/nvim-cmp"
use "hrsh7th/cmp-nvim-lsp"
use "hrsh7th/cmp-nvim-lua"
use "hrsh7th/cmp-path"
use "hrsh7th/cmp-calc"
use "hrsh7th/cmp-buffer"
use "hrsh7th/cmp-cmdline"
use "rafamadriz/friendly-snippets"
use "L3MON4D3/LuaSnip"
use "saadparwaiz1/cmp_luasnip"
use "williamboman/nvim-lsp-installer"
use "nvim-lua/lsp-status.nvim"
use "brymer-meneses/grammar-guard.nvim"
use {
"nvim-treesitter/nvim-treesitter",
run = ":TSUpdate"
}
2022-01-26 20:42:58 +01:00
2022-04-25 16:23:14 +02:00
-- Autoformat
use "lukas-reineke/lsp-format.nvim"
2022-01-26 20:42:58 +01:00
2022-04-25 16:23:14 +02:00
-- General Popup Window
use "akinsho/nvim-toggleterm.lua"
2022-01-26 20:42:58 +01:00
2022-04-25 16:23:14 +02:00
use "rktjmp/fwatch.nvim"
2022-04-23 03:41:04 +02:00
2022-04-25 16:23:14 +02:00
-- Database Feature
use "tpope/vim-dadbod"
use "kristijanhusak/vim-dadbod-ui"
end
2022-01-26 20:42:58 +01:00
)