config/dotfiles/nvim/lua/lazy-plugins.lua

46 lines
1.2 KiB
Lua
Raw Normal View History

2025-03-08 17:46:35 +01:00
-- [[ Configure and install plugins ]]
--
-- To check the current status of your plugins, run
-- :Lazy
--
-- You can press `?` in this menu for help. Use `:q` to close the window
--
-- To update plugins you can run
-- :Lazy update
--
-- NOTE: Here is where you install your plugins.
require('lazy').setup({
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically
'christoomey/vim-tmux-navigator',
'christoomey/vim-tmux-runner',
2025-05-03 17:02:57 +02:00
require 'plugins/which-key',
require 'plugins/gitsigns',
2025-05-03 17:45:40 +02:00
require 'plugins/mini',
2025-05-03 18:09:25 +02:00
require 'plugins/telescope',
2025-05-03 19:07:11 +02:00
require 'plugins/lspconfig',
2025-05-03 15:25:47 +02:00
2025-03-08 17:46:35 +01:00
}, {
ui = {
-- If you are using a Nerd Font: set icons to an empty table which will use the
-- default lazy.nvim defined Nerd Font icons, otherwise define a unicode icons table
icons = vim.g.have_nerd_font and {} or {
cmd = '',
config = '🛠',
event = '📅',
ft = '📂',
init = '',
keys = '🗝',
plugin = '🔌',
runtime = '💻',
require = '🌙',
source = '📄',
start = '🚀',
task = '📌',
lazy = '💤 ',
},
},
})
-- vim: ts=2 sts=2 sw=2 et