moved lazy setup into init file

This commit is contained in:
venus
2026-03-09 23:14:47 -05:00
parent 02e8dfa531
commit 55a7f6dc13
2 changed files with 34 additions and 69 deletions

View File

@@ -15,38 +15,3 @@ if not (vim.uv or vim.loop).fs_stat(lazypath) then
end
vim.opt.rtp:prepend(lazypath)
-- Setup lazy.nvim
require("lazy").setup({
spec = {
-- import your plugins
{ import = "plugins" },
{
'soywod/iris.vim', -- unsure
'tpope/vim-commentary', -- commenting lines with shortcut
-- 'vimpostor/vim-tpipeline', -- integrate with tmux status-line
'kshenoy/vim-signature', -- tag lines
'mg979/vim-visual-multi', -- work on multiple lines at once
{'NMAC427/guess-indent.nvim', -- Detect tabstop and shiftwidth automatically
config = function() require('guess-indent').setup {} end,},
'obsidian-nvim/obsidian.nvim', -- work with obsidian
{ 'edluffy/hologram.nvim', auto_display = true,}, --image viewer
'nvim-tree/nvim-web-devicons', -- nerdfont!
'nvim-lualine/lualine.nvim', -- lualine
'TamaMcGlinn/vim-termhere', --simple terminal QOL
"rktjmp/lush.nvim", -- better theme editing
{ "denialofsandwich/sudo.nvim", dependencies = { "MunifTanjim/nui.nvim", },config = true, }, --write restricted files without restart
{'akinsho/toggleterm.nvim', version = "*", config = true}, -- terminal toggling and commands
{'RRethy/base16-nvim'},
{ 'nvim-java/nvim-java', config = function() require('java').setup() vim.lsp.enable('jdtls') end, },
{'vyfor/cord.nvim'}, --discord rich presence
{ "catppuccin/nvim", name = "catppuccin", priority = 1000 },
"smjonas/inc-rename.nvim",
'basola21/PDFview',
},
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
install = { colorscheme = { "habamax" } },
-- automatically check for plugin updates
checker = { enabled = true },
})