explained all plugins
This commit is contained in:
7
init.lua
7
init.lua
@@ -22,13 +22,14 @@ 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
|
||||
{ 'NMAC427/guess-indent.nvim', config = function() require('guess-indent').setup {} end,}, -- Detect tabstop and shiftwidth automatically
|
||||
{ 'edluffy/hologram.nvim', auto_display = true,}, --image viewer
|
||||
{ "denialofsandwich/sudo.nvim", dependencies = { "MunifTanjim/nui.nvim", },config = true, }, --write restricted files without restart
|
||||
{'akinsho/toggleterm.nvim', version = "*", config = true}, -- terminal toggling and commands
|
||||
{ 'akinsho/toggleterm.nvim', version = "*", config = true}, -- terminal toggling and commands
|
||||
{ 'nvim-java/nvim-java', config = function() require('java').setup() vim.lsp.enable('jdtls') end, }, --jave QOL
|
||||
{ 'RRethy/base16-nvim', config = function() require('matugen').setup() end,}, --colorshceme for noctalia integration
|
||||
{ "lervag/vimtex", lazy = false, init = function() vim.g.vimtex_view_method = "zathura" end } -- for latex editing
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
return {
|
||||
return { -- adds lsp functionality and api for included languages
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
dependencies = {
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
return {
|
||||
return { -- add git tui functionality
|
||||
"NeogitOrg/neogit",
|
||||
lazy = true,
|
||||
dependencies = {
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
return {
|
||||
'nvim-telescope/telescope.nvim', tag = 'v0.2.0',
|
||||
dependencies = { 'nvim-lua/plenary.nvim', 'BurntSushi/ripgrep', 'sharkdp/fd' }
|
||||
}
|
||||
@@ -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()
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
return {
|
||||
return { -- basic tree sitter parser support
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = {
|
||||
indent = { enable = true },
|
||||
|
||||
Reference in New Issue
Block a user