explained all plugins

This commit is contained in:
venus
2026-03-23 22:02:19 -05:00
parent 8f70254615
commit ea948d4508
11 changed files with 13 additions and 21 deletions

View File

@@ -22,8 +22,9 @@ require("lazy").setup({
'0xm4n/resize.nvim', -- adds commands to resize panes
'nvim-tree/nvim-web-devicons', -- nerdfont!
'TamaMcGlinn/vim-termhere', --simple terminal QOL
"smjonas/inc-rename.nvim", --lsp plugin for renaming variable
'smjonas/inc-rename.nvim', --lsp plugin for renaming variable
'basola21/PDFview', -- rendering pdfs in nvim
{ 'nvim-telescope/telescope.nvim', tag = 'v0.2.0', dependencies = { 'nvim-lua/plenary.nvim', 'BurntSushi/ripgrep', 'sharkdp/fd' } }, -- fuzyfinding over lists
{ 'norcalli/nvim-colorizer.lua', config = function() require('colorizer').setup{"*"} end,}, -- preview colors
{ 'NMAC427/guess-indent.nvim', config = function() require('guess-indent').setup {} end,}, -- Detect tabstop and shiftwidth automatically
{ 'edluffy/hologram.nvim', auto_display = true,}, --image viewer

View File

@@ -9,8 +9,6 @@ vim.keymap.set('n', '<M-Right>', "<cmd>lua require('resize').ResizeRight()<CR>")
vim.keymap.set('n', '<M-Up>', "<cmd>lua require('resize').ResizeUp()<CR>")
vim.keymap.set('n', '<M-Down>', "<cmd>lua require('resize').ResizeDown()<CR>")
-- termunal interface shortcuts
vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')
-- Diagnostic keymaps

View File

@@ -1,4 +1,4 @@
return {
return { -- adds lsp functionality and api for included languages
{
"neovim/nvim-lspconfig",
dependencies = {

View File

@@ -1,4 +1,4 @@
return {
return { -- adds more detailed bar below the pane
'nvim-lualine/lualine.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' },
config = function()

View File

@@ -1,5 +1,4 @@
return {
-- Collection of various small independent plugins/modules
return { -- Collection of various small independent plugins/modules
'echasnovski/mini.nvim',
config = function()
-- Better Around/Inside textobjects

View File

@@ -1,4 +1,4 @@
return {
return { -- add git tui functionality
"NeogitOrg/neogit",
lazy = true,
dependencies = {

View File

@@ -1,4 +1,4 @@
return {
return { -- adds a more in-depth file manager with support for syntax highlighting and more commands
'nvim-tree/nvim-tree.lua',
dependencies = {
'nvim-tree/nvim-web-devicons',

View File

@@ -1,4 +1,4 @@
return {
return { -- syncronizes activity with Discord rich presence
'andweeb/presence.nvim',
auto_update = true, -- Update activity based on autocmd events (if `false`, map or manually execute `:lua package.loaded.presence:update()`)
neovim_image_text = 'The One True Text Editor', -- Text displayed when hovered over the Neovim image

View File

@@ -1,4 +0,0 @@
return {
'nvim-telescope/telescope.nvim', tag = 'v0.2.0',
dependencies = { 'nvim-lua/plenary.nvim', 'BurntSushi/ripgrep', 'sharkdp/fd' }
}

View File

@@ -1,7 +1,5 @@
-- Plugin: zaldih/themery.nvim
-- Installed via store.nvim
return {
return { -- adds a command to live view listed themes
-- TODO dynamically update themes
'zaldih/themery.nvim',
lazy = false,
config = function()

View File

@@ -1,4 +1,4 @@
return {
return { -- basic tree sitter parser support
"nvim-treesitter/nvim-treesitter",
opts = {
indent = { enable = true },