Files
nvim/lua/plugins/init.lua

251 lines
6.7 KiB
Lua
Raw Normal View History

return {
2022-03-15 14:37:10 -04:00
2022-09-08 12:21:50 -04:00
----------------------------------------------------------------
2023-01-16 16:47:30 -05:00
-- LSP and Autocomplete Plugins
-- They should be pulled first!
2022-09-08 12:21:50 -04:00
-----------------------------------------------------------------
2022-11-15 17:17:06 -05:00
-- Manage all your Keymaps!
{
"gregorias/nvim-mapper",
2022-11-15 17:17:06 -05:00
config = function() require("nvim-mapper").setup{} end,
before = "telescope.nvim"
2023-02-11 11:32:58 -05:00
},
2022-11-15 17:17:06 -05:00
2022-09-08 12:21:50 -04:00
-- Neovim Autocomplete with LSP
{
2023-01-16 16:47:30 -05:00
'L3MON4D3/LuaSnip', tag = "v1.1.0",
2022-11-28 19:55:20 -05:00
wants = { "friendly-snippets", "vim-snippets" },
},
2023-01-16 16:47:30 -05:00
2022-09-08 12:21:50 -04:00
------------------------------------------------------------
2023-01-16 16:47:30 -05:00
-- General Functionality
2022-09-08 12:21:50 -04:00
------------------------------------------------------------
2023-02-11 11:32:58 -05:00
'kdheepak/lazygit.nvim',
2022-09-20 16:29:49 -04:00
-- Tmux Navigation
{
2022-09-22 12:38:15 -04:00
"aserowy/tmux.nvim",
config = function() require("tmux").setup() end
2023-02-11 11:32:58 -05:00
},
2022-09-08 12:21:50 -04:00
-- Find & Search LSP Tags
'liuchengxu/vista.vim',
2023-01-16 16:47:30 -05:00
2022-09-08 12:21:50 -04:00
-- Snippets
'rafamadriz/friendly-snippets',
2023-01-16 16:47:30 -05:00
2022-09-08 12:21:50 -04:00
-- Rename and Work with Buffer & Tabs
'pacha/vem-tabline',
2023-01-16 16:47:30 -05:00
2022-03-15 14:37:10 -04:00
-- Nvim Tree File Manager on the Left
'nvim-tree/nvim-tree.lua',
2022-11-16 17:11:48 -05:00
2023-01-16 16:47:30 -05:00
-- Trouble Shows Errors with Files.
{
2022-11-16 17:11:48 -05:00
"folke/trouble.nvim",
2023-02-11 11:32:58 -05:00
dependencies = { 'kyazdani42/nvim-web-devicons' },
2022-11-16 17:11:48 -05:00
config = function()
require("trouble").setup {
}
end
},
2022-11-12 07:48:04 -05:00
-- Which Key
{
"folke/which-key.nvim",
config = function()
require("which-key").setup {
}
end
},
2022-09-08 12:21:50 -04:00
2023-01-16 16:47:30 -05:00
-- Top Right Notify Pop Up
'rcarriga/nvim-notify',
2023-01-16 16:47:30 -05:00
-- echasnovski Mini Modules (Selected)
{
2023-01-16 16:47:30 -05:00
'echasnovski/mini.move',
config = function()
require('mini.move').setup({
mappings = {
left = '<S-left>',
right = '<S-right>',
down = '<S-down>',
up = '<S-up>',
line_left = '<S-left>',
line_right = '<S-right>',
line_down = '<S-down>',
line_up = '<S-up>',
}
})
end
},
{
'echasnovski/mini.trailspace',
config = function()
require('mini.trailspace').setup()
end
},
{
'echasnovski/mini.surround', version = '*',
config = function()
require('mini.surround').setup()
end
},
{
2023-01-31 16:24:55 -05:00
'echasnovski/mini.pairs', branch = 'stable',
config = function()
require('mini.pairs').setup()
end
},
{
2023-01-16 16:47:30 -05:00
'echasnovski/mini.fuzzy', branch = 'stable',
config = function()
require('mini.fuzzy').setup()
end
},
2023-01-16 16:47:30 -05:00
2022-09-08 12:21:50 -04:00
-----------------------------------------------------------
2023-01-16 16:47:30 -05:00
-- Markdown Plugins
2022-09-08 12:21:50 -04:00
------------------------------------------------------------
{
2022-07-11 16:58:42 -04:00
'jakewvincent/mkdnflow.nvim',
config = function()
require('mkdnflow').setup({
2022-08-11 13:20:10 -04:00
mappings = {
MkdnToggleToDo = {{'i', 'n'}, '<C-Space>'},
MkdnNewListItem = {{'i'}, '<CR>'},
MkdnEnter = {{'n'}, '<CR>'},
MkdnTableNextCell = false,
MkdnTab = {{'i',}, '<Tab>'},
MkdnSTab = {{'i'}, '<S-Tab>'},
2022-09-20 16:29:49 -04:00
MkdnFollowLink = {'n', '<leader>p'}
},
wrap = true
2022-07-11 16:58:42 -04:00
})
end
2023-02-11 11:32:58 -05:00
},
2022-11-16 17:11:48 -05:00
{ "iamcco/markdown-preview.nvim", build = "cd app && npm install", setup = function() vim.g.mkdp_filetypes = {
"markdown" } end, ft = { "markdown" }, },
2022-07-20 14:53:53 -04:00
2022-09-08 12:21:50 -04:00
-- Prettier Plugin for Neovim specifically
'MunifTanjim/prettier.nvim',
2023-01-16 16:47:30 -05:00
2023-02-11 11:32:58 -05:00
-- DAP (Debug adaptor Protocol)
'mfussenegger/nvim-dap',
{
'mfussenegger/nvim-dap-python',
config = function()
require('dap-python').setup(
'~/.virtualenvs/debugpy/bin/python'
)
end
2023-02-11 11:32:58 -05:00
},
-- Sidebar
{
'sidebar-nvim/sidebar.nvim',
config = function()
require("sidebar-nvim").setup({
sections = {
"symbols",
"git",
"diagnostics",
"todos",
},
initial_width = 45,
hide_statusline = true,
todos = {
initially_closed = false, -- whether the groups should be initially closed on start. You can manually open/close groups later.
}
})
end
},
2022-09-08 12:21:50 -04:00
---------------------------------------------------------
2023-01-16 16:47:30 -05:00
-- Text, Icons, Symbols
2022-09-08 12:21:50 -04:00
----------------------------------------------------------
'lukas-reineke/indent-blankline.nvim',
'simrat39/symbols-outline.nvim',
-- 'nvim-tree/nvim-web-devicons',
'folke/lsp-colors.nvim',
'karb94/neoscroll.nvim',
2022-11-16 17:11:48 -05:00
2022-03-15 14:37:10 -04:00
-- Allow Popups for Telescope etc
'nvim-lua/popup.nvim',
'nvim-lua/plenary.nvim',
2022-09-08 12:21:50 -04:00
-- Todo & Comments for Organization
{
2022-11-16 17:11:48 -05:00
'folke/todo-comments.nvim',
dependencies = "nvim-lua/plenary.nvim",
config = function()
require("todo-comments").setup {
keywords = {
FIX = {
icon = "", -- icon used for the sign, and in search results
color = "error", -- can be a hex color, or a named color (see below)
alt = { "FIXME", "BUG", "FIXIT", "ISSUE" }, -- a set of other keywords that all map to this FIX keywords
-- signs = false, -- configure signs for some keywords individually
},
DONE = { icon = "", color = "info" },
FEAT = { icon = "", color = "warning", alt = { "NEED", "REQUEST" } },
WARN = { icon = "", color = "error", alt = { "WARNING", "ERROR" } },
TODO = { icon = "", color = "hint", alt = { "TASK", "TBD" } },
NOTE = { icon = "", color = "hint", alt = { "INFO" } },
SENG = { icon = "", color = "test", alt = { "SOLUTIONS", "SE", "WORKAROUND" } },
},
highlight = {
comments_only = false,
},
colors = {
error = { "DiagnosticError", "ErrorMsg", "#DC2626" },
warning = { "DiagnosticWarning", "WarningMsg", "#FBBF24" },
info = { "DiagnosticInfo", "#2563EB" },
hint = { "DiagnosticHint", "#10B981" },
default = { "Identifier", "#7C3AED" },
test = { "Identifier", "#FF00FF" }
},
2023-02-11 11:32:58 -05:00
}
end
},
2023-02-11 11:32:58 -05:00
-- Various telescopes
'nvim-telescope/telescope-file-browser.nvim',
2022-07-14 18:51:47 -04:00
2023-02-11 11:32:58 -05:00
{
'nvim-telescope/telescope-fzf-native.nvim',
build = 'make'
},
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
-----------------------------------------------------------
'tanvirtin/monokai.nvim',
'gbprod/nord.nvim',
'Mofiqul/dracula.nvim',
'lunarvim/colorschemes',
2023-02-11 11:32:58 -05:00
'rose-pine/neovim',
'catppuccin/nvim',
{
"folke/tokyonight.nvim",
lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
-- load the colorscheme here
vim.cmd([[colorscheme tokyonight]])
end,
},
{
2022-06-29 17:16:38 -04:00
'feline-nvim/feline.nvim',
dependencies = { 'kyazdani42/nvim-web-devicons' },
},
2023-02-11 11:32:58 -05:00
'ellisonleao/glow.nvim',
-- Plugin that causes your code to crumble >:)
2023-02-11 11:32:58 -05:00
-- 'eandrju/cellular-automaton.nvim',
-- Wakatime Tracking
'wakatime/vim-wakatime'
2023-02-11 11:32:58 -05:00
}