diff --git a/init.lua b/init.lua index 30cd27d..b306af0 100644 --- a/init.lua +++ b/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 diff --git a/lua/keybinds.lua b/lua/keybinds.lua index 093b4dd..efe090b 100644 --- a/lua/keybinds.lua +++ b/lua/keybinds.lua @@ -9,8 +9,6 @@ vim.keymap.set('n', '', "lua require('resize').ResizeRight()") vim.keymap.set('n', '', "lua require('resize').ResizeUp()") vim.keymap.set('n', '', "lua require('resize').ResizeDown()") - - -- termunal interface shortcuts vim.keymap.set('n', '', 'nohlsearch') -- Diagnostic keymaps diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index ef56d13..29f8bfb 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -1,4 +1,4 @@ -return { +return { -- adds lsp functionality and api for included languages { "neovim/nvim-lspconfig", dependencies = { diff --git a/lua/plugins/lualine.lua b/lua/plugins/lualine.lua index 489d39a..d9106d7 100644 --- a/lua/plugins/lualine.lua +++ b/lua/plugins/lualine.lua @@ -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() diff --git a/lua/plugins/mini.lua b/lua/plugins/mini.lua index c58cec9..46d5b82 100644 --- a/lua/plugins/mini.lua +++ b/lua/plugins/mini.lua @@ -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 diff --git a/lua/plugins/neogit.lua b/lua/plugins/neogit.lua index ed861e0..a591330 100644 --- a/lua/plugins/neogit.lua +++ b/lua/plugins/neogit.lua @@ -1,4 +1,4 @@ -return { +return { -- add git tui functionality "NeogitOrg/neogit", lazy = true, dependencies = { diff --git a/lua/plugins/nerdtree.lua b/lua/plugins/nerdtree.lua index 20760e2..c82394c 100644 --- a/lua/plugins/nerdtree.lua +++ b/lua/plugins/nerdtree.lua @@ -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', diff --git a/lua/plugins/presence.lua b/lua/plugins/presence.lua index f81b5fc..491bef6 100644 --- a/lua/plugins/presence.lua +++ b/lua/plugins/presence.lua @@ -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 diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua deleted file mode 100644 index 0a83be9..0000000 --- a/lua/plugins/telescope.lua +++ /dev/null @@ -1,4 +0,0 @@ -return { - 'nvim-telescope/telescope.nvim', tag = 'v0.2.0', - dependencies = { 'nvim-lua/plenary.nvim', 'BurntSushi/ripgrep', 'sharkdp/fd' } - } diff --git a/lua/plugins/themery.nvim.lua b/lua/plugins/themery.nvim.lua index a913030..75a3273 100644 --- a/lua/plugins/themery.nvim.lua +++ b/lua/plugins/themery.nvim.lua @@ -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() diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index e9a3830..fab2a6e 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -1,4 +1,4 @@ -return { +return { -- basic tree sitter parser support "nvim-treesitter/nvim-treesitter", opts = { indent = { enable = true },