2023-02-10 15:15:13 -05:00
|
|
|
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
|
|
|
-----------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
-- Easy Way to install Language Servers
|
2023-02-10 15:15:13 -05:00
|
|
|
{ 'williamboman/mason.nvim',
|
2022-11-28 19:55:20 -05:00
|
|
|
config = function()
|
|
|
|
|
require("mason").setup()
|
|
|
|
|
end
|
2023-02-10 15:15:13 -05:00
|
|
|
},
|
|
|
|
|
'williamboman/mason-lspconfig.nvim',
|
|
|
|
|
'neovim/nvim-lspconfig',
|
2023-01-16 16:47:30 -05:00
|
|
|
|
2022-11-15 17:17:06 -05:00
|
|
|
-- Manage all your Keymaps!
|
2023-02-10 15:15:13 -05:00
|
|
|
{
|
2022-11-15 17:17:06 -05:00
|
|
|
"lazytanuki/nvim-mapper",
|
|
|
|
|
config = function() require("nvim-mapper").setup{} end,
|
|
|
|
|
before = "telescope.nvim"
|
2023-02-10 15:15:13 -05:00
|
|
|
},
|
2022-11-15 17:17:06 -05:00
|
|
|
|
2022-09-08 12:21:50 -04:00
|
|
|
-- Neovim Autocomplete with LSP
|
2023-02-10 15:15:13 -05:00
|
|
|
{
|
2022-09-08 12:21:50 -04:00
|
|
|
'hrsh7th/nvim-cmp',
|
2023-02-10 15:15:13 -05:00
|
|
|
dependencies = {
|
2022-09-08 12:21:50 -04:00
|
|
|
'neovim/nvim-lspconfig',
|
|
|
|
|
'L3MON4D3/LuaSnip',
|
|
|
|
|
'hrsh7th/cmp-nvim-lsp',
|
|
|
|
|
'hrsh7th/cmp-path',
|
|
|
|
|
'hrsh7th/cmp-buffer',
|
|
|
|
|
'hrsh7th/cmp-cmdline',
|
|
|
|
|
'hrsh7th/nvim-cmp',
|
|
|
|
|
'saadparwaiz1/cmp_luasnip',
|
2022-11-28 19:55:20 -05:00
|
|
|
'hrsh7th/cmp-nvim-lsp-signature-help',
|
|
|
|
|
'f3fora/cmp-spell',
|
2022-09-08 12:21:50 -04:00
|
|
|
}
|
2023-02-10 15:15:13 -05:00
|
|
|
},
|
|
|
|
|
{
|
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-02-10 15:15:13 -05:00
|
|
|
},
|
2023-01-16 16:47:30 -05:00
|
|
|
|
2022-09-08 12:21:50 -04:00
|
|
|
-- Treesitter interface
|
2023-02-10 15:15:13 -05:00
|
|
|
{
|
2022-09-08 12:21:50 -04:00
|
|
|
'nvim-treesitter/nvim-treesitter',
|
2023-02-10 15:15:13 -05:00
|
|
|
build = function() require('nvim-treesitter.install').update({ with_sync = true }) end,
|
|
|
|
|
},
|
2022-09-08 12:21:50 -04:00
|
|
|
|
|
|
|
|
-- Null-LS
|
2023-02-10 15:15:13 -05:00
|
|
|
{
|
2022-11-30 17:21:29 -05:00
|
|
|
"jose-elias-alvarez/null-ls.nvim",
|
|
|
|
|
config = function()
|
|
|
|
|
require("null-ls").setup({
|
|
|
|
|
debug = true,
|
|
|
|
|
})
|
|
|
|
|
end,
|
2023-02-10 15:15:13 -05:00
|
|
|
dependencies = { "nvim-lua/plenary.nvim" },
|
|
|
|
|
},
|
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-09 10:50:44 -05:00
|
|
|
-- Change Color of virtual column bar
|
2023-02-10 15:15:13 -05:00
|
|
|
-- 'lukas-reineke/virt-column.nvim'
|
2023-01-16 16:47:30 -05:00
|
|
|
|
2022-09-20 16:29:49 -04:00
|
|
|
-- Tmux Navigation
|
2023-02-10 15:15:13 -05:00
|
|
|
{
|
2022-09-22 12:38:15 -04:00
|
|
|
"aserowy/tmux.nvim",
|
|
|
|
|
config = function() require("tmux").setup() end
|
2023-02-10 15:15:13 -05:00
|
|
|
},
|
2022-09-08 12:21:50 -04:00
|
|
|
-- Find & Search LSP Tags
|
2023-02-10 15:15:13 -05:00
|
|
|
'liuchengxu/vista.vim',
|
2023-01-16 16:47:30 -05:00
|
|
|
|
2022-09-08 12:21:50 -04:00
|
|
|
-- Snippets
|
2023-02-10 15:15:13 -05:00
|
|
|
'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
|
2023-02-10 15:15:13 -05:00
|
|
|
'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
|
2023-02-10 15:15:13 -05:00
|
|
|
'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.
|
2023-02-10 15:15:13 -05:00
|
|
|
{
|
2022-11-16 17:11:48 -05:00
|
|
|
"folke/trouble.nvim",
|
2023-02-10 15:15:13 -05:00
|
|
|
dependencies = "kyazdani42/nvim-web-devicons",
|
2022-11-16 17:11:48 -05:00
|
|
|
config = function()
|
|
|
|
|
require("trouble").setup {
|
|
|
|
|
}
|
|
|
|
|
end
|
2023-02-10 15:15:13 -05:00
|
|
|
},
|
2022-11-12 07:48:04 -05:00
|
|
|
|
2022-11-16 02:32:56 +00:00
|
|
|
-- Which Key
|
2023-02-10 15:15:13 -05:00
|
|
|
{
|
2022-11-16 02:32:56 +00:00
|
|
|
"folke/which-key.nvim",
|
|
|
|
|
config = function()
|
|
|
|
|
require("which-key").setup {
|
|
|
|
|
}
|
|
|
|
|
end
|
2023-02-10 15:15:13 -05:00
|
|
|
},
|
2022-09-08 12:21:50 -04:00
|
|
|
|
2023-01-16 16:47:30 -05:00
|
|
|
-- Top Right Notify Pop Up
|
2023-02-10 15:15:13 -05:00
|
|
|
'rcarriga/nvim-notify',
|
2023-01-16 16:47:30 -05:00
|
|
|
|
|
|
|
|
-- echasnovski Mini Modules (Selected)
|
2023-02-10 15:15:13 -05:00
|
|
|
{
|
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
|
2023-02-10 15:15:13 -05:00
|
|
|
},
|
|
|
|
|
'echasnovski/mini.trailspace',
|
|
|
|
|
{
|
2023-01-31 16:24:55 -05:00
|
|
|
'echasnovski/mini.pairs', branch = 'stable',
|
|
|
|
|
config = function()
|
|
|
|
|
require('mini.pairs').setup()
|
|
|
|
|
end
|
2023-02-10 15:15:13 -05:00
|
|
|
},
|
|
|
|
|
{
|
2023-01-16 16:47:30 -05:00
|
|
|
'echasnovski/mini.fuzzy', branch = 'stable',
|
|
|
|
|
config = function()
|
|
|
|
|
require('mini.fuzzy').setup()
|
|
|
|
|
end
|
2023-02-10 15:15:13 -05:00
|
|
|
},
|
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
|
|
|
------------------------------------------------------------
|
|
|
|
|
|
2023-02-10 15:15:13 -05: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'}
|
2023-02-07 18:08:39 -05:00
|
|
|
},
|
|
|
|
|
wrap = true
|
2022-07-11 16:58:42 -04:00
|
|
|
})
|
|
|
|
|
end
|
2023-02-10 15:15:13 -05:00
|
|
|
},
|
2022-11-16 17:11:48 -05:00
|
|
|
|
2023-02-10 15:15:13 -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
|
2023-02-10 15:15:13 -05:00
|
|
|
'MunifTanjim/prettier.nvim',
|
2023-01-16 16:47:30 -05:00
|
|
|
|
2023-02-09 10:50:44 -05:00
|
|
|
-- DAP (Debug adaptor Protocol)
|
2023-02-10 15:15:13 -05:00
|
|
|
'mfussenegger/nvim-dap',
|
2023-02-09 10:50:44 -05:00
|
|
|
|
2023-02-10 15:15:13 -05:00
|
|
|
{
|
2023-02-09 10:50:44 -05:00
|
|
|
'mfussenegger/nvim-dap-python',
|
|
|
|
|
config = function()
|
|
|
|
|
require('dap-python').setup(
|
|
|
|
|
'~/.virtualenvs/debugpy/bin/python'
|
|
|
|
|
)
|
|
|
|
|
end
|
2023-02-10 15:15:13 -05:00
|
|
|
},
|
2023-02-09 10:50:44 -05:00
|
|
|
-- Sidebar
|
2023-02-10 15:15:13 -05:00
|
|
|
{
|
2023-02-09 10:50:44 -05:00
|
|
|
'sidebar-nvim/sidebar.nvim',
|
|
|
|
|
config = function()
|
|
|
|
|
require("sidebar-nvim").setup({
|
|
|
|
|
sections = {
|
2023-02-10 15:15:13 -05:00
|
|
|
"symbols",
|
2023-02-09 10:50:44 -05:00
|
|
|
"git",
|
|
|
|
|
"diagnostics",
|
|
|
|
|
"todos",
|
2023-02-10 15:15:13 -05:00
|
|
|
},
|
|
|
|
|
initial_width = 45,
|
|
|
|
|
hide_statusline = true,
|
|
|
|
|
todos = {
|
|
|
|
|
initially_closed = true, -- whether the groups should be initially closed on start. You can manually open/close groups later.
|
|
|
|
|
}
|
2023-02-09 10:50:44 -05:00
|
|
|
})
|
|
|
|
|
end
|
2023-02-10 15:15:13 -05:00
|
|
|
},
|
2023-02-09 10:50:44 -05:00
|
|
|
|
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
|
|
|
----------------------------------------------------------
|
2023-02-10 15:15:13 -05:00
|
|
|
'lukas-reineke/indent-blankline.nvim',
|
2023-01-16 16:47:30 -05:00
|
|
|
|
2023-02-10 15:15:13 -05:00
|
|
|
'simrat39/symbols-outline.nvim',
|
2023-01-16 16:47:30 -05:00
|
|
|
|
2023-02-10 15:15:13 -05:00
|
|
|
-- 'nvim-tree/nvim-web-devicons',
|
2023-01-16 16:47:30 -05:00
|
|
|
|
2023-02-10 15:15:13 -05:00
|
|
|
'folke/lsp-colors.nvim',
|
2022-11-16 17:11:48 -05:00
|
|
|
|
2023-02-10 15:15:13 -05:00
|
|
|
'karb94/neoscroll.nvim',
|
2022-11-16 17:11:48 -05:00
|
|
|
|
2022-03-15 14:37:10 -04:00
|
|
|
-- Allow Popups for Telescope etc
|
2023-02-10 15:15:13 -05:00
|
|
|
'nvim-lua/popup.nvim',
|
|
|
|
|
'nvim-lua/plenary.nvim',
|
2022-09-08 12:21:50 -04:00
|
|
|
|
|
|
|
|
-- Todo & Comments for Organization
|
2023-02-10 15:15:13 -05:00
|
|
|
{
|
2022-11-16 17:11:48 -05:00
|
|
|
'folke/todo-comments.nvim',
|
2023-02-10 15:15:13 -05:00
|
|
|
dependencies = "nvim-lua/plenary.nvim",
|
2022-11-30 17:21:29 -05:00
|
|
|
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" } },
|
2022-12-22 18:15:25 -05:00
|
|
|
TODO = { icon = " ", color = "hint", alt = { "TASK", "TBD" } },
|
2022-11-30 17:21:29 -05:00
|
|
|
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" }
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
end
|
2023-02-10 15:15:13 -05:00
|
|
|
},
|
2022-11-16 02:32:56 +00:00
|
|
|
-- The all famous telescope
|
2023-02-10 15:15:13 -05:00
|
|
|
{
|
2023-01-16 16:47:30 -05:00
|
|
|
"nvim-telescope/telescope-file-browser.nvim"
|
2023-02-10 15:15:13 -05:00
|
|
|
},
|
2022-07-14 18:51:47 -04:00
|
|
|
|
2023-02-10 15:15:13 -05:00
|
|
|
{
|
|
|
|
|
'nvim-telescope/telescope-fzf-native.nvim',
|
|
|
|
|
build = 'make'
|
|
|
|
|
},
|
2023-02-09 10:50:44 -05:00
|
|
|
|
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
|
|
|
-----------------------------------------------------------
|
2023-02-10 15:15:13 -05:00
|
|
|
'tanvirtin/monokai.nvim',
|
|
|
|
|
'gbprod/nord.nvim',
|
|
|
|
|
'Mofiqul/dracula.nvim',
|
|
|
|
|
'lunarvim/colorschemes',
|
|
|
|
|
{ 'rose-pine/neovim', as = 'rose-pine' },
|
|
|
|
|
{ "catppuccin/nvim", as = "catppuccin" },
|
|
|
|
|
{
|
|
|
|
|
"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',
|
2023-02-10 15:15:13 -05:00
|
|
|
dependencies = { 'kyazdani42/nvim-web-devicons' },
|
|
|
|
|
},
|
|
|
|
|
{"ellisonleao/glow.nvim"},
|
2022-11-30 17:21:29 -05:00
|
|
|
-- Plugin that causes your code to crumble >:)
|
2023-02-10 15:15:13 -05:00
|
|
|
'eandrju/cellular-automaton.nvim',
|
|
|
|
|
|
|
|
|
|
-- Wakatime Tracking
|
|
|
|
|
'wakatime/vim-wakatime'
|
|
|
|
|
}
|
|
|
|
|
|