config update

This commit is contained in:
2026-01-14 13:14:25 +01:00
parent 70fb6adeb9
commit 1e3b1ec550
17 changed files with 727 additions and 0 deletions

28
lua/markaya/lazy.lua Normal file
View File

@@ -0,0 +1,28 @@
-- [[ Install `lazy.nvim` plugin manager ]]
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
if not vim.loop.fs_stat(lazypath) then
local lazyrepo = 'https://github.com/folke/lazy.nvim.git'
vim.fn.system {
'git',
'clone',
'--filter=blob:none',
-- Ovde zaključavamo na v11.17.5 umesto '--branch=stable'
'--branch=v11.17.5',
lazyrepo,
lazypath
}
end
vim.opt.rtp:prepend(lazypath)
-- Setup lazy.nvim
require('lazy').setup('markaya.plugins', {
-- Opciono: takođe možete dodati samu lazy.nvim u listu specifikacija
-- unutar foldera 'markaya/plugins' kako biste osigurali da je Lazy uvek na toj verziji
ui = {
icons = vim.g.have_nerd_font and {} or {
cmd = '', config = '🛠', event = '📅', ft = '📂', init = '',
keys = '🗝', plugin = '🔌', runtime = '💻', require = '🌙',
source = '📄', start = '🚀', task = '📌', lazy = '💤 ',
},
},
})