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 '0xm4n/resize.nvim', -- adds commands to resize panes
'nvim-tree/nvim-web-devicons', -- nerdfont! 'nvim-tree/nvim-web-devicons', -- nerdfont!
'TamaMcGlinn/vim-termhere', --simple terminal QOL '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 '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 { '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 { 'NMAC427/guess-indent.nvim', config = function() require('guess-indent').setup {} end,}, -- Detect tabstop and shiftwidth automatically
{ 'edluffy/hologram.nvim', auto_display = true,}, --image viewer { '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-Up>', "<cmd>lua require('resize').ResizeUp()<CR>")
vim.keymap.set('n', '<M-Down>', "<cmd>lua require('resize').ResizeDown()<CR>") vim.keymap.set('n', '<M-Down>', "<cmd>lua require('resize').ResizeDown()<CR>")
-- termunal interface shortcuts -- termunal interface shortcuts
vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>') vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')
-- Diagnostic keymaps -- Diagnostic keymaps

View File

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

View File

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

View File

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

View File

@@ -1,4 +1,4 @@
return { return { -- add git tui functionality
"NeogitOrg/neogit", "NeogitOrg/neogit",
lazy = true, lazy = true,
dependencies = { 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', 'nvim-tree/nvim-tree.lua',
dependencies = { dependencies = {
'nvim-tree/nvim-web-devicons', 'nvim-tree/nvim-web-devicons',

View File

@@ -1,4 +1,4 @@
return { return { -- syncronizes activity with Discord rich presence
'andweeb/presence.nvim', 'andweeb/presence.nvim',
auto_update = true, -- Update activity based on autocmd events (if `false`, map or manually execute `:lua package.loaded.presence:update()`) 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 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 return { -- adds a command to live view listed themes
-- Installed via store.nvim -- TODO dynamically update themes
return {
'zaldih/themery.nvim', 'zaldih/themery.nvim',
lazy = false, lazy = false,
config = function() config = function()

View File

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