dotfiles/.config/nvim/lua/config/plugins/init.lua

56 lines
1.9 KiB
Lua
Raw Normal View History

2025-04-29 07:38:49 +05:00
-- [[ Install `lazy.nvim` plugin manager ]]
-- See `:help lazy.nvim.txt` or https://github.com/folke/lazy.nvim for more info
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
if not (vim.uv or vim.loop).fs_stat(lazypath) then
local lazyrepo = 'https://github.com/folke/lazy.nvim.git'
local out = vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath }
if vim.v.shell_error ~= 0 then
error('Error cloning lazy.nvim:\n' .. out)
end
end ---@diagnostic disable-next-line: undefined-field
vim.opt.rtp:prepend(lazypath)
-- local keymaps = require('config.pluginmaps')
require('lazy').setup({
-- INFO: General Editing --
2025-04-29 07:38:49 +05:00
'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically
{ 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = {} },
-- TODO: i dunno about this one
-- {
-- 'folke/noice.nvim',
-- event = 'VeryLazy',
-- opts = {
-- },
-- dependencies = {
-- -- if you lazy-load any plugin below, make sure to add proper `module='...'` entries
-- 'MunifTanjim/nui.nvim',
-- -- OPTIONAL:
-- -- `nvim-notify` is only needed, if you want to use the notification view.
-- -- If not available, we use `mini` as the fallback
-- 'rcarriga/nvim-notify',
-- }
-- },
2025-04-29 07:38:49 +05:00
-- { 'stevearc/dressing.nvim', opts = {}, },
-- 'ThePrimeagen/vim-be-good',
-- { 'vuciv/golf' },
2025-05-01 07:50:51 +05:00
2025-04-29 07:38:49 +05:00
require('config.plugins.git'),
require('config.plugins.ui'),
-- require('config.plugins.telescope'),
2025-04-29 07:38:49 +05:00
require('config.plugins.blinkcmp'),
2025-05-05 22:56:56 +05:00
require('config.plugins.languages.lsp'),
require('config.plugins.languages.treesitter'),
2025-05-01 07:50:51 +05:00
require('config.plugins.harpoon'),
2025-05-02 19:52:18 +05:00
require('config.plugins.autosession'),
require('config.plugins.snacks'),
require('config.plugins.mini'),
2025-04-29 07:38:49 +05:00
2025-05-05 22:56:56 +05:00
require('config.plugins.languages.molten'),
require('config.plugins.languages.flutter'),
2025-04-29 07:38:49 +05:00
})