Files
nvim-config/lua/plugins/init.lua

22 lines
1.0 KiB
Lua

return {
-- [[ General Cleanup and Save Plugins ]]
'mboughaba/vim-lessmess', -- Remove trailing whitespace, mixed, etc.
'jose-elias-alvarez/null-ls.nvim', -- Not really sure actually
-- [[ Basic Code Editing ]]
'DanilaMihailov/beacon.nvim', -- Show me where my cursor is when switching panes
'tpope/vim-commentary', -- Uncomment/Comment lines of code with gc
-- [[ Git stuff ]]
'tpope/vim-fugitive', -- Git commands with :G/:Git
'junegunn/gv.vim', -- See Git Commit Log with :GV
-- [[ Colorschemes ]]
'loctvl842/monokai-pro.nvim', -- Solid Monokai Pro Colorscheme
'Mofiqul/dracula.nvim', -- Dracula Colorscheme
'ellisonleao/gruvbox.nvim', -- Good ol' Gruvbox Colorscheme
'sainnhe/gruvbox-material', -- Gruvbox Material Colorscheme (Easier on the eyes)
'sainnhe/everforest', -- Everforest Colorscheme
'kaicataldo/material.vim', -- Material Colorscheme
}